src/cm/templates/site/profile.html
author gibus
Thu, 21 Jul 2011 15:03:38 +0200
changeset 366 98af3be91847
parent 225 67e1a89d6bca
child 438 fcc5e2f0befd
permissions -rw-r--r--
For some reasons, abiwords can read background style attribute but not background-color

{% extends "site/layout/base_workspace.html" %}
{% load com %}
{% load i18n %}

{% block title %}
{% blocktrans with user.username as username %}Your profile ({{ username }}){% endblocktrans %}
{% endblock %}

{% block head %}
{% endblock %}

{% block content %}

<h1>{% blocktrans with user.username as username %}Your profile ({{ username }}){% endblocktrans %}</h1>

<ul class="sub_list">
    <li class="active_sub">{% blocktrans %}Profile{% endblocktrans %}</li>
    <li> / </li>
    <li><a href="{% url profile-pw %}">{% blocktrans %}Password{% endblocktrans %}</a></li>
</ul>

<form id="profile" enctype="multipart/form-data" class="wizard-form" action="." method="post">
<table class="wide_form">
    <tbody>
        {% for form in forms %}
            {% include "site/macros/form_fields.html" %}
        {% endfor %}
    <tr>
        <td style="vertical-align: top; width: 20%; text-align:right;">
        </td>
        <td>
            <label></label>
            <input name="save" type="submit" value="{% blocktrans %}Save{% endblocktrans %}"/>
        </td>
    </tr>
    </tbody>
</table>
</form>
{% endblock %}