templates/profile/view.html
author Nishanth Amuluru <nishanth@fossee.in>
Sat, 08 Jan 2011 01:46:33 +0530
changeset 302 4ee9a0f32f76
parent 267 b1245d75938d
child 304 37adf6656f48
permissions -rw-r--r--
Added edit_profile link
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
267
b1245d75938d Added template for viewing profile
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
     1
{% extends 'base.html' %}
b1245d75938d Added template for viewing profile
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
     2
{% block content %}
b1245d75938d Added template for viewing profile
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
     3
username: {{user.username}} <br />
b1245d75938d Added template for viewing profile
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
     4
gender: {{profile.gender}} <br />
b1245d75938d Added template for viewing profile
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
     5
About Me: {{profile.aboutme}} <br />
b1245d75938d Added template for viewing profile
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
     6
address: {{profile.address}} <br />
b1245d75938d Added template for viewing profile
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
     7
phone number: {{profile.phonenum}} <br />
302
4ee9a0f32f76 Added edit_profile link
Nishanth Amuluru <nishanth@fossee.in>
parents: 267
diff changeset
     8
<a href="/profile/edit">Edit profile</a>
267
b1245d75938d Added template for viewing profile
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
     9
{% endblock %}