templates/user/my_profile.html
author anoop
Thu, 04 Feb 2010 23:17:59 +0530
changeset 27 8d52492d3c14
parent 24 fcae44e94845
child 28 e137b605b888
permissions -rw-r--r--
changed the view my profile 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
27
8d52492d3c14 changed the view my profile template.
anoop
parents: 24
diff changeset
    10
    <h2>{{ profile }}'s Profile</h2><hr>
8d52492d3c14 changed the view my profile template.
anoop
parents: 24
diff changeset
    11
    {% if edit_profile %}
8d52492d3c14 changed the view my profile template.
anoop
parents: 24
diff changeset
    12
        <a href="/user/edit/">edit profile</a>
8d52492d3c14 changed the view my profile template.
anoop
parents: 24
diff changeset
    13
    {% endif %}
8d52492d3c14 changed the view my profile template.
anoop
parents: 24
diff changeset
    14
    <hr>
8d52492d3c14 changed the view my profile template.
anoop
parents: 24
diff changeset
    15
    {% if profile.aboutme %}
8d52492d3c14 changed the view my profile template.
anoop
parents: 24
diff changeset
    16
        <br><h4>About Me</h4><hr>{{ profile.aboutme }}
8d52492d3c14 changed the view my profile template.
anoop
parents: 24
diff changeset
    17
    {% endif %}
8d52492d3c14 changed the view my profile template.
anoop
parents: 24
diff changeset
    18
    {% if profile.nick %}
8d52492d3c14 changed the view my profile template.
anoop
parents: 24
diff changeset
    19
        <br><h4>Nick Name</h4><hr>{{ profile.nick }}
8d52492d3c14 changed the view my profile template.
anoop
parents: 24
diff changeset
    20
    {% endif %}
8d52492d3c14 changed the view my profile template.
anoop
parents: 24
diff changeset
    21
    {% if profile.dob %}
8d52492d3c14 changed the view my profile template.
anoop
parents: 24
diff changeset
    22
        <br><h4>Date of Birth</h4><hr>{{ profile.dob }}
8d52492d3c14 changed the view my profile template.
anoop
parents: 24
diff changeset
    23
    {% endif %}
8d52492d3c14 changed the view my profile template.
anoop
parents: 24
diff changeset
    24
    {% if profile.credits %}
8d52492d3c14 changed the view my profile template.
anoop
parents: 24
diff changeset
    25
        <br><h4>Credits</h4><hr>{{ profile.credits }}
8d52492d3c14 changed the view my profile template.
anoop
parents: 24
diff changeset
    26
    {% endif %}
8d52492d3c14 changed the view my profile template.
anoop
parents: 24
diff changeset
    27
    {% if profile.foss_comm %}
8d52492d3c14 changed the view my profile template.
anoop
parents: 24
diff changeset
    28
        <br><h4>Foss Community</h4><hr>{{ profile.foss_comm }}
8d52492d3c14 changed the view my profile template.
anoop
parents: 24
diff changeset
    29
    {% endif %}
8d52492d3c14 changed the view my profile template.
anoop
parents: 24
diff changeset
    30
    {% if profile.phonenum %}
8d52492d3c14 changed the view my profile template.
anoop
parents: 24
diff changeset
    31
        <br><h4>Phone Number</h4><hr>{{ profile.phonenum }}
8d52492d3c14 changed the view my profile template.
anoop
parents: 24
diff changeset
    32
    {% endif %}
8d52492d3c14 changed the view my profile template.
anoop
parents: 24
diff changeset
    33
    {% if profile.homepage %}
8d52492d3c14 changed the view my profile template.
anoop
parents: 24
diff changeset
    34
        <br><h4>Homepage</h4><hr>{{ profile.homepage }}
8d52492d3c14 changed the view my profile template.
anoop
parents: 24
diff changeset
    35
    {% endif %}
8d52492d3c14 changed the view my profile template.
anoop
parents: 24
diff changeset
    36
    {% if profile.street or profile.city or profile.country %}
8d52492d3c14 changed the view my profile template.
anoop
parents: 24
diff changeset
    37
        <br><h4>Address</h4><hr>
8d52492d3c14 changed the view my profile template.
anoop
parents: 24
diff changeset
    38
        {% if profile.street %}
8d52492d3c14 changed the view my profile template.
anoop
parents: 24
diff changeset
    39
            {{ profile.street }}
8d52492d3c14 changed the view my profile template.
anoop
parents: 24
diff changeset
    40
            <br>
8d52492d3c14 changed the view my profile template.
anoop
parents: 24
diff changeset
    41
        {% endif %}
8d52492d3c14 changed the view my profile template.
anoop
parents: 24
diff changeset
    42
        {% if profile.city %}
8d52492d3c14 changed the view my profile template.
anoop
parents: 24
diff changeset
    43
            {{ profile.city }}
8d52492d3c14 changed the view my profile template.
anoop
parents: 24
diff changeset
    44
            <br>
8d52492d3c14 changed the view my profile template.
anoop
parents: 24
diff changeset
    45
        {% endif %}
8d52492d3c14 changed the view my profile template.
anoop
parents: 24
diff changeset
    46
        {% if profile.country %}
8d52492d3c14 changed the view my profile template.
anoop
parents: 24
diff changeset
    47
            {{ profile.country }}
8d52492d3c14 changed the view my profile template.
anoop
parents: 24
diff changeset
    48
        {% endif %}
8d52492d3c14 changed the view my profile template.
anoop
parents: 24
diff changeset
    49
    {% endif %}
24
fcae44e94845 added files edit_profile.html and my_profile.html.
anoop
parents:
diff changeset
    50
{% endblock %}