pytask/templates/user/my_profile.html
author anoop
Mon, 01 Feb 2010 17:30:30 +0530
changeset 22 943a35c14cf7
parent 21 3e676fa948c4
permissions -rw-r--r--
added browse users functionality, added user/browse.html, fixed view my profile template.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
17
9ca9f98af0eb added files edit_profile.html and my_profile.html.
anoop
parents:
diff changeset
     1
{% extends 'base.html' %}
21
3e676fa948c4 changed the view my profile template.
anoop
parents: 17
diff changeset
     2
3e676fa948c4 changed the view my profile template.
anoop
parents: 17
diff changeset
     3
{% block title %}
3e676fa948c4 changed the view my profile template.
anoop
parents: 17
diff changeset
     4
    {{ profile.user }}'s Profile
3e676fa948c4 changed the view my profile template.
anoop
parents: 17
diff changeset
     5
{% endblock %}
3e676fa948c4 changed the view my profile template.
anoop
parents: 17
diff changeset
     6
17
9ca9f98af0eb added files edit_profile.html and my_profile.html.
anoop
parents:
diff changeset
     7
{% block content %}
21
3e676fa948c4 changed the view my profile template.
anoop
parents: 17
diff changeset
     8
    <!--{{ view_profile_form.as_p }}-->
17
9ca9f98af0eb added files edit_profile.html and my_profile.html.
anoop
parents:
diff changeset
     9
22
943a35c14cf7 added browse users functionality, added user/browse.html, fixed view my profile template.
anoop
parents: 21
diff changeset
    10
    <h2>{{ profile }}'s Profile</h2>
943a35c14cf7 added browse users functionality, added user/browse.html, fixed view my profile template.
anoop
parents: 21
diff changeset
    11
    <hr>
21
3e676fa948c4 changed the view my profile template.
anoop
parents: 17
diff changeset
    12
    {% if edit_profile %}
3e676fa948c4 changed the view my profile template.
anoop
parents: 17
diff changeset
    13
        <a href="/user/edit/">edit profile</a>
22
943a35c14cf7 added browse users functionality, added user/browse.html, fixed view my profile template.
anoop
parents: 21
diff changeset
    14
        <hr>
21
3e676fa948c4 changed the view my profile template.
anoop
parents: 17
diff changeset
    15
    {% endif %}
3e676fa948c4 changed the view my profile template.
anoop
parents: 17
diff changeset
    16
    {% if profile.aboutme %}
3e676fa948c4 changed the view my profile template.
anoop
parents: 17
diff changeset
    17
        <br><h4>About Me</h4><hr>{{ profile.aboutme }}
3e676fa948c4 changed the view my profile template.
anoop
parents: 17
diff changeset
    18
    {% endif %}
3e676fa948c4 changed the view my profile template.
anoop
parents: 17
diff changeset
    19
    {% if profile.nick %}
3e676fa948c4 changed the view my profile template.
anoop
parents: 17
diff changeset
    20
        <br><h4>Nick Name</h4><hr>{{ profile.nick }}
3e676fa948c4 changed the view my profile template.
anoop
parents: 17
diff changeset
    21
    {% endif %}
3e676fa948c4 changed the view my profile template.
anoop
parents: 17
diff changeset
    22
    {% if profile.dob %}
3e676fa948c4 changed the view my profile template.
anoop
parents: 17
diff changeset
    23
        <br><h4>Date of Birth</h4><hr>{{ profile.dob }}
3e676fa948c4 changed the view my profile template.
anoop
parents: 17
diff changeset
    24
    {% endif %}
3e676fa948c4 changed the view my profile template.
anoop
parents: 17
diff changeset
    25
    {% if profile.credits %}
3e676fa948c4 changed the view my profile template.
anoop
parents: 17
diff changeset
    26
        <br><h4>Credits</h4><hr>{{ profile.credits }}
3e676fa948c4 changed the view my profile template.
anoop
parents: 17
diff changeset
    27
    {% endif %}
3e676fa948c4 changed the view my profile template.
anoop
parents: 17
diff changeset
    28
    {% if profile.foss_comm %}
3e676fa948c4 changed the view my profile template.
anoop
parents: 17
diff changeset
    29
        <br><h4>Foss Community</h4><hr>{{ profile.foss_comm }}
3e676fa948c4 changed the view my profile template.
anoop
parents: 17
diff changeset
    30
    {% endif %}
3e676fa948c4 changed the view my profile template.
anoop
parents: 17
diff changeset
    31
    {% if profile.phonenum %}
3e676fa948c4 changed the view my profile template.
anoop
parents: 17
diff changeset
    32
        <br><h4>Phone Number</h4><hr>{{ profile.phonenum }}
3e676fa948c4 changed the view my profile template.
anoop
parents: 17
diff changeset
    33
    {% endif %}
3e676fa948c4 changed the view my profile template.
anoop
parents: 17
diff changeset
    34
    {% if profile.homepage %}
3e676fa948c4 changed the view my profile template.
anoop
parents: 17
diff changeset
    35
        <br><h4>Homepage</h4><hr>{{ profile.homepage }}
3e676fa948c4 changed the view my profile template.
anoop
parents: 17
diff changeset
    36
    {% endif %}
3e676fa948c4 changed the view my profile template.
anoop
parents: 17
diff changeset
    37
    {% if profile.street or profile.city or profile.country %}
3e676fa948c4 changed the view my profile template.
anoop
parents: 17
diff changeset
    38
        <br><h4>Address</h4><hr>
3e676fa948c4 changed the view my profile template.
anoop
parents: 17
diff changeset
    39
        {% if profile.street %}
3e676fa948c4 changed the view my profile template.
anoop
parents: 17
diff changeset
    40
            {{ profile.street }}
3e676fa948c4 changed the view my profile template.
anoop
parents: 17
diff changeset
    41
            <br>
3e676fa948c4 changed the view my profile template.
anoop
parents: 17
diff changeset
    42
        {% endif %}
3e676fa948c4 changed the view my profile template.
anoop
parents: 17
diff changeset
    43
        {% if profile.city %}
3e676fa948c4 changed the view my profile template.
anoop
parents: 17
diff changeset
    44
            {{ profile.city }}
3e676fa948c4 changed the view my profile template.
anoop
parents: 17
diff changeset
    45
            <br>
3e676fa948c4 changed the view my profile template.
anoop
parents: 17
diff changeset
    46
        {% endif %}
3e676fa948c4 changed the view my profile template.
anoop
parents: 17
diff changeset
    47
        {% if profile.country %}
3e676fa948c4 changed the view my profile template.
anoop
parents: 17
diff changeset
    48
            {{ profile.country }}
3e676fa948c4 changed the view my profile template.
anoop
parents: 17
diff changeset
    49
        {% endif %}
3e676fa948c4 changed the view my profile template.
anoop
parents: 17
diff changeset
    50
    {% endif %}
17
9ca9f98af0eb added files edit_profile.html and my_profile.html.
anoop
parents:
diff changeset
    51
{% endblock %}