# HG changeset patch # User Nishanth Amuluru # Date 1294431775 -19800 # Node ID 37adf6656f48d71a5cec29cef463f2b6407990e0 # Parent 41fcf227300322d1dab6683036e2b61005887ce6 Added full_name and prettified the page diff -r 41fcf2273003 -r 37adf6656f48 templates/profile/browse_notifications.html --- a/templates/profile/browse_notifications.html Sat Jan 08 01:52:17 2011 +0530 +++ b/templates/profile/browse_notifications.html Sat Jan 08 01:52:55 2011 +0530 @@ -3,7 +3,7 @@ {% if not notifications %} You have no notifications. {% else %} -Notifications for you:
+Notifications:
{% for notification in notifications %} {% if not notification.is_read %} {% endif %} diff -r 41fcf2273003 -r 37adf6656f48 templates/profile/view.html --- a/templates/profile/view.html Sat Jan 08 01:52:17 2011 +0530 +++ b/templates/profile/view.html Sat Jan 08 01:52:55 2011 +0530 @@ -1,9 +1,10 @@ {% extends 'base.html' %} {% block content %} -username: {{user.username}}
-gender: {{profile.gender}}
+Name: {{profile.full_name}}
+Username: {{user.username}}
+Gender: {{profile.gender}}
About Me: {{profile.aboutme}}
-address: {{profile.address}}
-phone number: {{profile.phonenum}}
+Address: {{profile.address}}
+Phone Number: {{profile.phonenum}}
Edit profile {% endblock %}