root / uauth / organization / templates / organization / user.html @ 7b499930
1 |
{% load i18n %} |
---|---|
2 |
|
3 |
<div class="user"> |
4 |
<h3>{% trans "Login" %} {{ user.username }} {% if user.get_fullname %}({{ user.get_fullname }}){% endif %}</h3> |
5 |
<h4>{% trans "Password:" %} {{ user.password }}</h4> |
6 |
<p class="expire">{% trans "Expiring:" %} {% if user.expiration_date %}{{ user.expiration_date|date:"DATETIME_FORMAT" }}{% else %}{% trans "never" %}{% endif %}</p> |
7 |
<p><strong>{% trans "Description" %}</strong></p> |
8 |
<p>{{ user.description }}</p> |
9 |
</div>
|