--- 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: <br />
+Notifications: <br />
{% for notification in notifications %}
<a href="/profile/notf/view/nid={{notification.uniq_key}}">
{% if not notification.is_read %} <b> {% endif %}
--- 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}} <br />
-gender: {{profile.gender}} <br />
+Name: {{profile.full_name}} <br />
+Username: {{user.username}} <br />
+Gender: {{profile.gender}} <br />
About Me: {{profile.aboutme}} <br />
-address: {{profile.address}} <br />
-phone number: {{profile.phonenum}} <br />
+Address: {{profile.address}} <br />
+Phone Number: {{profile.phonenum}} <br />
<a href="/profile/edit">Edit profile</a>
{% endblock %}