src/cm/templates/site/profile.html
changeset 0 40c8f766c9b8
child 225 67e1a89d6bca
equal deleted inserted replaced
-1:000000000000 0:40c8f766c9b8
       
     1 {% extends "site/layout/base_workspace.html" %}
       
     2 {% load com %}
       
     3 {% load i18n %}
       
     4 
       
     5 {% block title %}
       
     6 {% blocktrans with user.username as username %}Your profile ({{ username }}){% endblocktrans %}
       
     7 {% endblock %}
       
     8 
       
     9 {% block head %}
       
    10 {% endblock %}
       
    11 
       
    12 {% block content %}
       
    13 
       
    14 <h1>{% blocktrans with user.username as username %}Your profile ({{ username }}){% endblocktrans %}</h1>
       
    15 <form id="profile" enctype="multipart/form-data" class="wizard-form" action="." method="post">
       
    16 <table class="wide_form">
       
    17     <tbody>
       
    18         {% for form in forms %}
       
    19             {% include "site/macros/form_fields.html" %}
       
    20         {% endfor %}
       
    21     <tr>
       
    22         <td style="vertical-align: top; width: 20%; text-align:right;">
       
    23         </td>
       
    24         <td>
       
    25             <label></label>
       
    26             <input name="save" type="submit" value="{% blocktrans %}Save{% endblocktrans %}"/>
       
    27         </td>
       
    28     </tr>
       
    29     </tbody>
       
    30 </table>
       
    31 </form>
       
    32 {% endblock %}