src/cm/templates/site/profile_pw.html
author gibus
Fri, 13 Apr 2012 15:57:05 +0200
changeset 408 962f4c60c692
parent 225 67e1a89d6bca
child 437 dec07877fd39
permissions -rw-r--r--
Requires django > 1.3
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
225
67e1a89d6bca refactor forgot pw function to use django methods / add password change page in profile / i18n update
raph
parents:
diff changeset
     1
{% extends "site/layout/base_workspace.html" %}
67e1a89d6bca refactor forgot pw function to use django methods / add password change page in profile / i18n update
raph
parents:
diff changeset
     2
{% load com %}
67e1a89d6bca refactor forgot pw function to use django methods / add password change page in profile / i18n update
raph
parents:
diff changeset
     3
{% load i18n %}
67e1a89d6bca refactor forgot pw function to use django methods / add password change page in profile / i18n update
raph
parents:
diff changeset
     4
67e1a89d6bca refactor forgot pw function to use django methods / add password change page in profile / i18n update
raph
parents:
diff changeset
     5
{% block title %}
67e1a89d6bca refactor forgot pw function to use django methods / add password change page in profile / i18n update
raph
parents:
diff changeset
     6
{% blocktrans with user.username as username %}Your profile ({{ username }}){% endblocktrans %}
67e1a89d6bca refactor forgot pw function to use django methods / add password change page in profile / i18n update
raph
parents:
diff changeset
     7
{% endblock %}
67e1a89d6bca refactor forgot pw function to use django methods / add password change page in profile / i18n update
raph
parents:
diff changeset
     8
67e1a89d6bca refactor forgot pw function to use django methods / add password change page in profile / i18n update
raph
parents:
diff changeset
     9
{% block head %}
67e1a89d6bca refactor forgot pw function to use django methods / add password change page in profile / i18n update
raph
parents:
diff changeset
    10
{% endblock %}
67e1a89d6bca refactor forgot pw function to use django methods / add password change page in profile / i18n update
raph
parents:
diff changeset
    11
67e1a89d6bca refactor forgot pw function to use django methods / add password change page in profile / i18n update
raph
parents:
diff changeset
    12
{% block content %}
67e1a89d6bca refactor forgot pw function to use django methods / add password change page in profile / i18n update
raph
parents:
diff changeset
    13
67e1a89d6bca refactor forgot pw function to use django methods / add password change page in profile / i18n update
raph
parents:
diff changeset
    14
<h1>{% blocktrans with user.username as username %}Your profile ({{ username }}){% endblocktrans %}</h1>
67e1a89d6bca refactor forgot pw function to use django methods / add password change page in profile / i18n update
raph
parents:
diff changeset
    15
67e1a89d6bca refactor forgot pw function to use django methods / add password change page in profile / i18n update
raph
parents:
diff changeset
    16
<ul class="sub_list">
67e1a89d6bca refactor forgot pw function to use django methods / add password change page in profile / i18n update
raph
parents:
diff changeset
    17
    <li><a href="{% url profile %}">{% blocktrans %}Profile{% endblocktrans %}</a></li>
67e1a89d6bca refactor forgot pw function to use django methods / add password change page in profile / i18n update
raph
parents:
diff changeset
    18
    <li> / </li>
67e1a89d6bca refactor forgot pw function to use django methods / add password change page in profile / i18n update
raph
parents:
diff changeset
    19
    <li class="active_sub">{% blocktrans %}Password{% endblocktrans %}</li>
67e1a89d6bca refactor forgot pw function to use django methods / add password change page in profile / i18n update
raph
parents:
diff changeset
    20
</ul>
67e1a89d6bca refactor forgot pw function to use django methods / add password change page in profile / i18n update
raph
parents:
diff changeset
    21
67e1a89d6bca refactor forgot pw function to use django methods / add password change page in profile / i18n update
raph
parents:
diff changeset
    22
<form id="profile" enctype="multipart/form-data" class="wizard-form" action="." method="post">
67e1a89d6bca refactor forgot pw function to use django methods / add password change page in profile / i18n update
raph
parents:
diff changeset
    23
<table class="wide_form">
67e1a89d6bca refactor forgot pw function to use django methods / add password change page in profile / i18n update
raph
parents:
diff changeset
    24
    <tbody>
67e1a89d6bca refactor forgot pw function to use django methods / add password change page in profile / i18n update
raph
parents:
diff changeset
    25
        {% for form in forms %}
67e1a89d6bca refactor forgot pw function to use django methods / add password change page in profile / i18n update
raph
parents:
diff changeset
    26
            {% include "site/macros/form_fields.html" %}
67e1a89d6bca refactor forgot pw function to use django methods / add password change page in profile / i18n update
raph
parents:
diff changeset
    27
        {% endfor %}
67e1a89d6bca refactor forgot pw function to use django methods / add password change page in profile / i18n update
raph
parents:
diff changeset
    28
    <tr>
67e1a89d6bca refactor forgot pw function to use django methods / add password change page in profile / i18n update
raph
parents:
diff changeset
    29
        <td style="vertical-align: top; width: 20%; text-align:right;">
67e1a89d6bca refactor forgot pw function to use django methods / add password change page in profile / i18n update
raph
parents:
diff changeset
    30
        </td>
67e1a89d6bca refactor forgot pw function to use django methods / add password change page in profile / i18n update
raph
parents:
diff changeset
    31
        <td>
67e1a89d6bca refactor forgot pw function to use django methods / add password change page in profile / i18n update
raph
parents:
diff changeset
    32
            <label></label>
67e1a89d6bca refactor forgot pw function to use django methods / add password change page in profile / i18n update
raph
parents:
diff changeset
    33
            <input name="save" type="submit" value="{% blocktrans %}Save{% endblocktrans %}"/>
67e1a89d6bca refactor forgot pw function to use django methods / add password change page in profile / i18n update
raph
parents:
diff changeset
    34
        </td>
67e1a89d6bca refactor forgot pw function to use django methods / add password change page in profile / i18n update
raph
parents:
diff changeset
    35
    </tr>
67e1a89d6bca refactor forgot pw function to use django methods / add password change page in profile / i18n update
raph
parents:
diff changeset
    36
    </tbody>
67e1a89d6bca refactor forgot pw function to use django methods / add password change page in profile / i18n update
raph
parents:
diff changeset
    37
</table>
67e1a89d6bca refactor forgot pw function to use django methods / add password change page in profile / i18n update
raph
parents:
diff changeset
    38
</form>
67e1a89d6bca refactor forgot pw function to use django methods / add password change page in profile / i18n update
raph
parents:
diff changeset
    39
{% endblock %}