{% extends "webadmin/base.html" %} {% load i18n %} {% load markup %} {% load custom_tags %} {% block title %}{% trans "My account" %}{% endblock %} {% block css %} {% endblock %} {% block jscript %} {% endblock %} {% block content %}

{% trans "My account" %}

{% trans "Fields marked with an * are mandatory." %}


{% for field in form %} {% endfor %} {% if ldapAuth %} {% else %} {% endif %}
{{ field.label_tag }}{% if field.field.required %}*{% endif %}{{ field }}{% if field.errors %}{{ field.errors }}{% endif %}{{ field.help_text|safe }}
LDAP: {{ ldapAuth }}
Password: change password
 
{% if edit_mode %} Create Thumbnail
Thumbnail Preview

{% else %}

{% if photo_size %}
Original size: ({{ photo_size.0.0 }}, {{ photo_size.0.1 }}) {{ photo_size.1|filesizeformat }}
Crop this picture. {% else %}
  • You have not upload photo for your profile yet.
{% endif %}

{% endif %}

Upload your photo

{% for field in form_file %} {% endfor %}
{{ field }}{% if field.errors %}{{ field.errors }}{% endif %}{{ field.help_text|safe }}

{% if myaccount.groupsCount %}

{% trans "Owned Groups" %}


Loading
{% for dict in myaccount.groups %} {% endfor %}
{% trans "Actions" %} {% trans "Name" %} {% trans "Permissions" %} {% trans "Description" %}
{% if not dict.locked %} edit {% endif %} {{ dict.group.description|default_if_none:"-"|truncatewords:"5" }}
{% endif %}
{% endblock %}