{% extends "users/user_base.html" %} {% load static %} {% load i18n %} {% block content %}

{% trans "User" %}: {{octofuss_user.uid}}

{% trans "Edit" %}

{% trans "User details" %}

{# refs #9972 #} {# refs #9972 #}
{% trans "Status" %} {% if octofuss_user.enabled %} {% trans "enabled" %} {% else %} {% trans "disabled" %} {% endif %}
{% trans "Username" %} {{octofuss_user.uid}}
{% trans "Full name" %} {{octofuss_user.get_gecos_display}}
{% trans "Last password change" %} {{octofuss_user.last_password_change}} ({{octofuss_user.last_password_change_days}})
{% trans "Next password change" %} {{octofuss_user.next_password_change}} ({{octofuss_user.next_password_change_days}})
{% trans "Unit" %} {{octofuss_user.ou}}
{% trans "Controlled by group" %} {% if octofuss_user.controllerGroup %} {{octofuss_user.controllerGroup}} {% else %} {% trans "none" %} {% endif %}
{% trans "Home Directory" %} {{octofuss_user.homeDirectory}}
{% trans "Shell" %} {{octofuss_user.loginShell}}
{% trans "UID" %} {{octofuss_user.uidNumber}}
{% trans "GID" %} {{octofuss_user.gidNumber}}

{% trans "Groups" %}

{% for g in groups %} {% endfor %}
{% trans "Group" %} {% trans "GID" %}
{{g.cn}} {{g.gidNumber}}
{# refs #145 #}

{% trans "Network permissions" %}

{% for np in netperms %} {% endfor %}
{% trans "Permission" %} {% trans "Hostname" %}
{{np.permission}} {{np.hostname}}
{% endblock %}