profile/views.py
author Nishanth Amuluru <nishanth@fossee.in>
Fri, 07 Jan 2011 11:25:21 +0530
changeset 267 b1245d75938d
parent 266 4dfcc826b241
child 269 dde894b36370
permissions -rwxr-xr-x
Added template for viewing profile

from django.shortcuts import render_to_response, redirect

from django.contrib.auth.decorators import login_required

@login_required
def view_profile(request):

    user = request.user

    profile = user.get_profile()

    context = {"user": user,
               "profile": profile,
              }
    return render_to_response("profile/view.html", context)