Created a view for viewing profile
authorNishanth Amuluru <nishanth@fossee.in>
Fri, 07 Jan 2011 11:19:36 +0530
changeset 266 4dfcc826b241
parent 265 1ce8241a9628
child 267 b1245d75938d
Created a view for viewing profile
profile/views.py
urls.py
--- a/profile/views.py	Fri Jan 07 11:11:53 2011 +0530
+++ b/profile/views.py	Fri Jan 07 11:19:36 2011 +0530
@@ -1,1 +1,15 @@
-# Create your views here.
+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)
--- a/urls.py	Fri Jan 07 11:11:53 2011 +0530
+++ b/urls.py	Fri Jan 07 11:19:36 2011 +0530
@@ -22,6 +22,6 @@
     url(r'^accounts/register/$', register,
         {'form_class': CustomRegistrationForm},
         name='registration_register'),
-
+    (r'^accounts/profile/', include('pytask.profile.urls')),
     (r'^accounts/', include('registration.urls')),
 )