This repository has been archived on 2023-02-21. You can view files and clone it, but cannot push or open issues or pull requests.
u-auth/uauth/organization/templates/organization/user.html

10 lines
463 B
HTML

{% load i18n %}
<div class="user">
<h3>{% trans "Login" %} {{ user.username }} {% if user.get_fullname %}({{ user.get_fullname }}){% endif %}</h3>
<h4>{% trans "Password:" %} {{ user.password }}</h4>
<p class="expire">{% trans "Expiring:" %} {% if user.expiration_date %}{{ user.expiration_date|date:"DATETIME_FORMAT" }}{% else %}{% trans "never" %}{% endif %}</p>
<p><strong>{% trans "Description" %}</strong></p>
<p>{{ user.description }}</p>
</div>