pytask/templates/profile/view.html
author Nishanth Amuluru <nishanth@fossee.in>
Tue, 11 Jan 2011 12:30:10 +0530
changeset 140 8fcde6f8f750
parent 69 c6bca38c1cbf
permissions -rw-r--r--
added view_user functionality
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 %}
66
37adf6656f48 Added full_name and prettified the page
Nishanth Amuluru <nishanth@fossee.in>
parents: 64
diff changeset
     3
Name: {{profile.full_name}} <br />
37adf6656f48 Added full_name and prettified the page
Nishanth Amuluru <nishanth@fossee.in>
parents: 64
diff changeset
     4
Username: {{user.username}} <br />
37adf6656f48 Added full_name and prettified the page
Nishanth Amuluru <nishanth@fossee.in>
parents: 64
diff changeset
     5
Gender: {{profile.gender}} <br />
68
5ff1fc726848 prettified the page
Nishanth Amuluru <nishanth@fossee.in>
parents: 66
diff changeset
     6
Date of Birth: {{profile.dob}}<br />
5ff1fc726848 prettified the page
Nishanth Amuluru <nishanth@fossee.in>
parents: 66
diff changeset
     7
<hr />
5ff1fc726848 prettified the page
Nishanth Amuluru <nishanth@fossee.in>
parents: 66
diff changeset
     8
About Me: {{profile.aboutme|linebreaksbr}} <br />
5ff1fc726848 prettified the page
Nishanth Amuluru <nishanth@fossee.in>
parents: 66
diff changeset
     9
<hr />
5ff1fc726848 prettified the page
Nishanth Amuluru <nishanth@fossee.in>
parents: 66
diff changeset
    10
Address: {{profile.address|linebreaksbr}} <br />
5ff1fc726848 prettified the page
Nishanth Amuluru <nishanth@fossee.in>
parents: 66
diff changeset
    11
<hr />
66
37adf6656f48 Added full_name and prettified the page
Nishanth Amuluru <nishanth@fossee.in>
parents: 64
diff changeset
    12
Phone Number: {{profile.phonenum}} <br />
64
4ee9a0f32f76 Added edit_profile link
Nishanth Amuluru <nishanth@fossee.in>
parents: 29
diff changeset
    13
<a href="/profile/edit">Edit profile</a>
29
b1245d75938d Added template for viewing profile
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
    14
{% endblock %}