pytask/templates/profile/view.html
author Madhusudan.C.S <madhusudancs@gmail.com>
Fri, 04 Feb 2011 16:38:21 +0530
changeset 558 fd3e6f5f01bd
parent 417 b37e541bf950
permissions -rw-r--r--
Use the form helpers templatetag module in the addreviewer template.
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 %}
304
37adf6656f48 Added full_name and prettified the page
Nishanth Amuluru <nishanth@fossee.in>
parents: 302
diff changeset
     3
Name: {{profile.full_name}} <br />
37adf6656f48 Added full_name and prettified the page
Nishanth Amuluru <nishanth@fossee.in>
parents: 302
diff changeset
     4
Username: {{user.username}} <br />
37adf6656f48 Added full_name and prettified the page
Nishanth Amuluru <nishanth@fossee.in>
parents: 302
diff changeset
     5
Gender: {{profile.gender}} <br />
306
5ff1fc726848 prettified the page
Nishanth Amuluru <nishanth@fossee.in>
parents: 304
diff changeset
     6
Date of Birth: {{profile.dob}}<br />
5ff1fc726848 prettified the page
Nishanth Amuluru <nishanth@fossee.in>
parents: 304
diff changeset
     7
<hr />
5ff1fc726848 prettified the page
Nishanth Amuluru <nishanth@fossee.in>
parents: 304
diff changeset
     8
About Me: {{profile.aboutme|linebreaksbr}} <br />
5ff1fc726848 prettified the page
Nishanth Amuluru <nishanth@fossee.in>
parents: 304
diff changeset
     9
<hr />
5ff1fc726848 prettified the page
Nishanth Amuluru <nishanth@fossee.in>
parents: 304
diff changeset
    10
Address: {{profile.address|linebreaksbr}} <br />
5ff1fc726848 prettified the page
Nishanth Amuluru <nishanth@fossee.in>
parents: 304
diff changeset
    11
<hr />
304
37adf6656f48 Added full_name and prettified the page
Nishanth Amuluru <nishanth@fossee.in>
parents: 302
diff changeset
    12
Phone Number: {{profile.phonenum}} <br />
417
b37e541bf950 Manipulate all the templates to use {% url %} templatetag instead of hard coded URLs.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 307
diff changeset
    13
<a href="{% url edit_profile %}">Edit profile</a>
267
b1245d75938d Added template for viewing profile
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
    14
{% endblock %}