{% extends "webadmin/base.html" %} {% load i18n %} {% comment %} {% endcomment %} {% block title %}{% trans "My account" %}{% endblock %} {% block link %} {{ block.super }} {% endblock %} {% block script %} {{ block.super }} {% endblock %} {% block center_details %}
{% csrf_token %}

{% trans "Fields marked in red are mandatory." %}


Change {% if myaccount.hasAvatar %} Delete {% endif %}
{% for field in form %} {% if field.errors %}
{{ field.errors }}
{% endif %} {% if field.field.required %}{{ field.label_tag }}{% else %}{{ field.label_tag }}{% endif %} {{ field }} {{ field.help_text|safe }} {% endfor %} {% if ldapAuth %}
{{ ldapAuth }}
{% else %} {% endif %}
{% csrf_token %} {% for field in password_form %} {% endfor %}
{{ field.label_tag }} {{ field }} {{ field.help_text|safe }}
{% if ownedGroups %}

Groups I Own

{% for group in ownedGroups %} {% endfor %}
{% trans "Name" %} {% trans "Permissions" %} {% trans "Description" %}
{{ group.name }} {{ group.getPermissions }} ({{ group.details.permissions }}) {{ group.description|default:"-"|truncatewords:"5" }} Edit
{% endif %}
{% if ownedGroups %}

Personal Usage:

Group Usage (where owned):
{% for group in ownedGroups %} {% endfor %}


{% endif %} {% include 'webadmin/includes/drivespaceStats.html' %}
{% endblock %}