templates/profile/view.html
author Nishanth Amuluru <nishanth@fossee.in>
Fri, 07 Jan 2011 11:25:21 +0530
changeset 29 b1245d75938d
child 64 4ee9a0f32f76
permissions -rw-r--r--
Added template for viewing profile
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
29
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 />
b1245d75938d Added template for viewing profile
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
     8
{% endblock %}