templates/user/my_profile.html
author anoop
Fri, 19 Feb 2010 21:46:24 +0530
changeset 45 ab8918e654ae
parent 28 e137b605b888
child 65 8ac0ce6cfd66
permissions -rw-r--r--
added forgot password in template.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
24
fcae44e94845 added files edit_profile.html and my_profile.html.
anoop
parents:
diff changeset
     1
{% extends 'base.html' %}
27
8d52492d3c14 changed the view my profile template.
anoop
parents: 24
diff changeset
     2
8d52492d3c14 changed the view my profile template.
anoop
parents: 24
diff changeset
     3
{% block title %}
8d52492d3c14 changed the view my profile template.
anoop
parents: 24
diff changeset
     4
    {{ profile.user }}'s Profile
8d52492d3c14 changed the view my profile template.
anoop
parents: 24
diff changeset
     5
{% endblock %}
8d52492d3c14 changed the view my profile template.
anoop
parents: 24
diff changeset
     6
24
fcae44e94845 added files edit_profile.html and my_profile.html.
anoop
parents:
diff changeset
     7
{% block content %}
27
8d52492d3c14 changed the view my profile template.
anoop
parents: 24
diff changeset
     8
    <!--{{ view_profile_form.as_p }}-->
24
fcae44e94845 added files edit_profile.html and my_profile.html.
anoop
parents:
diff changeset
     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
8d52492d3c14 changed the view my profile template.
anoop
parents: 24
diff changeset
    12
    {% if edit_profile %}
45
ab8918e654ae added forgot password in template.
anoop
parents: 28
diff changeset
    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
8d52492d3c14 changed the view my profile template.
anoop
parents: 24
diff changeset
    15
    {% endif %}
8d52492d3c14 changed the view my profile template.
anoop
parents: 24
diff changeset
    16
    {% if profile.aboutme %}
8d52492d3c14 changed the view my profile template.
anoop
parents: 24
diff changeset
    17
        <br><h4>About Me</h4><hr>{{ profile.aboutme }}
8d52492d3c14 changed the view my profile template.
anoop
parents: 24
diff changeset
    18
    {% endif %}
8d52492d3c14 changed the view my profile template.
anoop
parents: 24
diff changeset
    19
    {% if profile.nick %}
8d52492d3c14 changed the view my profile template.
anoop
parents: 24
diff changeset
    20
        <br><h4>Nick Name</h4><hr>{{ profile.nick }}
8d52492d3c14 changed the view my profile template.
anoop
parents: 24
diff changeset
    21
    {% endif %}
8d52492d3c14 changed the view my profile template.
anoop
parents: 24
diff changeset
    22
    {% if profile.dob %}
8d52492d3c14 changed the view my profile template.
anoop
parents: 24
diff changeset
    23
        <br><h4>Date of Birth</h4><hr>{{ profile.dob }}
8d52492d3c14 changed the view my profile template.
anoop
parents: 24
diff changeset
    24
    {% endif %}
8d52492d3c14 changed the view my profile template.
anoop
parents: 24
diff changeset
    25
    {% if profile.credits %}
8d52492d3c14 changed the view my profile template.
anoop
parents: 24
diff changeset
    26
        <br><h4>Credits</h4><hr>{{ profile.credits }}
8d52492d3c14 changed the view my profile template.
anoop
parents: 24
diff changeset
    27
    {% endif %}
8d52492d3c14 changed the view my profile template.
anoop
parents: 24
diff changeset
    28
    {% if profile.foss_comm %}
8d52492d3c14 changed the view my profile template.
anoop
parents: 24
diff changeset
    29
        <br><h4>Foss Community</h4><hr>{{ profile.foss_comm }}
8d52492d3c14 changed the view my profile template.
anoop
parents: 24
diff changeset
    30
    {% endif %}
8d52492d3c14 changed the view my profile template.
anoop
parents: 24
diff changeset
    31
    {% if profile.phonenum %}
8d52492d3c14 changed the view my profile template.
anoop
parents: 24
diff changeset
    32
        <br><h4>Phone Number</h4><hr>{{ profile.phonenum }}
8d52492d3c14 changed the view my profile template.
anoop
parents: 24
diff changeset
    33
    {% endif %}
8d52492d3c14 changed the view my profile template.
anoop
parents: 24
diff changeset
    34
    {% if profile.homepage %}
8d52492d3c14 changed the view my profile template.
anoop
parents: 24
diff changeset
    35
        <br><h4>Homepage</h4><hr>{{ profile.homepage }}
8d52492d3c14 changed the view my profile template.
anoop
parents: 24
diff changeset
    36
    {% endif %}
8d52492d3c14 changed the view my profile template.
anoop
parents: 24
diff changeset
    37
    {% if profile.street or profile.city or profile.country %}
8d52492d3c14 changed the view my profile template.
anoop
parents: 24
diff changeset
    38
        <br><h4>Address</h4><hr>
8d52492d3c14 changed the view my profile template.
anoop
parents: 24
diff changeset
    39
        {% if profile.street %}
8d52492d3c14 changed the view my profile template.
anoop
parents: 24
diff changeset
    40
            {{ profile.street }}
8d52492d3c14 changed the view my profile template.
anoop
parents: 24
diff changeset
    41
            <br>
8d52492d3c14 changed the view my profile template.
anoop
parents: 24
diff changeset
    42
        {% endif %}
8d52492d3c14 changed the view my profile template.
anoop
parents: 24
diff changeset
    43
        {% if profile.city %}
8d52492d3c14 changed the view my profile template.
anoop
parents: 24
diff changeset
    44
            {{ profile.city }}
8d52492d3c14 changed the view my profile template.
anoop
parents: 24
diff changeset
    45
            <br>
8d52492d3c14 changed the view my profile template.
anoop
parents: 24
diff changeset
    46
        {% endif %}
8d52492d3c14 changed the view my profile template.
anoop
parents: 24
diff changeset
    47
        {% if profile.country %}
8d52492d3c14 changed the view my profile template.
anoop
parents: 24
diff changeset
    48
            {{ profile.country }}
8d52492d3c14 changed the view my profile template.
anoop
parents: 24
diff changeset
    49
        {% endif %}
8d52492d3c14 changed the view my profile template.
anoop
parents: 24
diff changeset
    50
    {% endif %}
24
fcae44e94845 added files edit_profile.html and my_profile.html.
anoop
parents:
diff changeset
    51
{% endblock %}