xmpp.chapril.org-conversejs/html/profile.html
2012-03-02 16:25:57 +01:00

35 lines
913 B
HTML

{% extends "base.html" %}
{% load url from future %}
{% load i18n %}
{% block content %}
{% if form.errors %}
<div class="ui-widget">
<div style="padding: 0pt 0.7em;" class="ui-state-error ui-corner-all">
<p><span style="float: left; margin-right: 0.3em;" class="ui-icon ui-icon-alert"></span>
{% trans "Please fix errors in the form." %}
</p>
</div>
</div>
{% endif %}
<form method="post" action="{% url 'accounts.views.profile' %}">
{% csrf_token %}
<fieldset>
<legend>{% trans "Preferences" %}</legend>
<table>
{{ form.as_table }}
</table>
</fieldset>
<fieldset>
<legend>{% trans "Password" %}</legend>
{% url 'django.contrib.auth.views.password_change' as pw_url %}
{% blocktrans %}You can change password on <a href="{{ pw_url }}">separate page</a>.{% endblocktrans %}
</fieldset>
<input type="submit" value="{% trans "Save" %}" class="button" />
</form>
{% endblock %}