author | anoop |
Mon, 08 Mar 2010 16:30:35 +0530 | |
changeset 209 | f34052de27f5 |
parent 208 | ba839dd7c7d7 |
child 219 | f04a1ec7a07f |
permissions | -rw-r--r-- |
24 | 1 |
{% extends 'base.html' %} |
27 | 2 |
|
3 |
{% block title %} |
|
4 |
{{ profile.user }}'s Profile |
|
5 |
{% endblock %} |
|
6 |
||
24 | 7 |
{% block content %} |
27 | 8 |
<!--{{ view_profile_form.as_p }}--> |
24 | 9 |
|
28
e137b605b888
added browse users functionality, added user/browse.html, fixed view my profile template.
anoop
parents:
27
diff
changeset
|
10 |
<h2>{{ profile }}'s Profile</h2> |
e137b605b888
added browse users functionality, added user/browse.html, fixed view my profile template.
anoop
parents:
27
diff
changeset
|
11 |
<hr> |
27 | 12 |
{% if edit_profile %} |
45 | 13 |
<a href="/user/edit/">edit profile</a> | <a href="/accounts/password/change">change password</a> |
28
e137b605b888
added browse users functionality, added user/browse.html, fixed view my profile template.
anoop
parents:
27
diff
changeset
|
14 |
<hr> |
27 | 15 |
{% endif %} |
65 | 16 |
{% if profile.photo %} |
17 |
<a href={{ profile.photo.url }}> |
|
18 |
<img border="0" height="200" src={{ profile.photo.url }}> |
|
19 |
</a> |
|
20 |
{% endif %} |
|
208
ba839dd7c7d7
admins and managers can see full profile of user, including email, address and phone number.
anoop
parents:
65
diff
changeset
|
21 |
{% if privilege or edit_profile %} |
209 | 22 |
<br><h4>E-Mail</h4><hr>{{ profile.user.email }} |
208
ba839dd7c7d7
admins and managers can see full profile of user, including email, address and phone number.
anoop
parents:
65
diff
changeset
|
23 |
{% endif %} |
27 | 24 |
{% if profile.aboutme %} |
25 |
<br><h4>About Me</h4><hr>{{ profile.aboutme }} |
|
26 |
{% endif %} |
|
27 |
{% if profile.nick %} |
|
28 |
<br><h4>Nick Name</h4><hr>{{ profile.nick }} |
|
29 |
{% endif %} |
|
30 |
{% if profile.dob %} |
|
31 |
<br><h4>Date of Birth</h4><hr>{{ profile.dob }} |
|
32 |
{% endif %} |
|
33 |
{% if profile.credits %} |
|
34 |
<br><h4>Credits</h4><hr>{{ profile.credits }} |
|
35 |
{% endif %} |
|
36 |
{% if profile.foss_comm %} |
|
37 |
<br><h4>Foss Community</h4><hr>{{ profile.foss_comm }} |
|
38 |
{% endif %} |
|
208
ba839dd7c7d7
admins and managers can see full profile of user, including email, address and phone number.
anoop
parents:
65
diff
changeset
|
39 |
{% if privilege or edit_profile %} |
ba839dd7c7d7
admins and managers can see full profile of user, including email, address and phone number.
anoop
parents:
65
diff
changeset
|
40 |
{% if profile.phonenum %} |
ba839dd7c7d7
admins and managers can see full profile of user, including email, address and phone number.
anoop
parents:
65
diff
changeset
|
41 |
<br><h4>Phone Number</h4><hr>{{ profile.phonenum }} |
ba839dd7c7d7
admins and managers can see full profile of user, including email, address and phone number.
anoop
parents:
65
diff
changeset
|
42 |
{% endif %} |
27 | 43 |
{% endif %} |
44 |
{% if profile.homepage %} |
|
45 |
<br><h4>Homepage</h4><hr>{{ profile.homepage }} |
|
46 |
{% endif %} |
|
208
ba839dd7c7d7
admins and managers can see full profile of user, including email, address and phone number.
anoop
parents:
65
diff
changeset
|
47 |
{% if privilege or edit_profile %} |
ba839dd7c7d7
admins and managers can see full profile of user, including email, address and phone number.
anoop
parents:
65
diff
changeset
|
48 |
{% if profile.street or profile.city or profile.country %} |
ba839dd7c7d7
admins and managers can see full profile of user, including email, address and phone number.
anoop
parents:
65
diff
changeset
|
49 |
<br><h4>Address</h4><hr> |
ba839dd7c7d7
admins and managers can see full profile of user, including email, address and phone number.
anoop
parents:
65
diff
changeset
|
50 |
{% if profile.street %} |
ba839dd7c7d7
admins and managers can see full profile of user, including email, address and phone number.
anoop
parents:
65
diff
changeset
|
51 |
{{ profile.street }} |
ba839dd7c7d7
admins and managers can see full profile of user, including email, address and phone number.
anoop
parents:
65
diff
changeset
|
52 |
<br> |
ba839dd7c7d7
admins and managers can see full profile of user, including email, address and phone number.
anoop
parents:
65
diff
changeset
|
53 |
{% endif %} |
ba839dd7c7d7
admins and managers can see full profile of user, including email, address and phone number.
anoop
parents:
65
diff
changeset
|
54 |
{% if profile.city %} |
ba839dd7c7d7
admins and managers can see full profile of user, including email, address and phone number.
anoop
parents:
65
diff
changeset
|
55 |
{{ profile.city }} |
ba839dd7c7d7
admins and managers can see full profile of user, including email, address and phone number.
anoop
parents:
65
diff
changeset
|
56 |
<br> |
ba839dd7c7d7
admins and managers can see full profile of user, including email, address and phone number.
anoop
parents:
65
diff
changeset
|
57 |
{% endif %} |
ba839dd7c7d7
admins and managers can see full profile of user, including email, address and phone number.
anoop
parents:
65
diff
changeset
|
58 |
{% if profile.country %} |
ba839dd7c7d7
admins and managers can see full profile of user, including email, address and phone number.
anoop
parents:
65
diff
changeset
|
59 |
{{ profile.country }} |
ba839dd7c7d7
admins and managers can see full profile of user, including email, address and phone number.
anoop
parents:
65
diff
changeset
|
60 |
{% endif %} |
27 | 61 |
{% endif %} |
208
ba839dd7c7d7
admins and managers can see full profile of user, including email, address and phone number.
anoop
parents:
65
diff
changeset
|
62 |
{% else %} |
27 | 63 |
{% endif %} |
24 | 64 |
{% endblock %} |