Browse Source

Display join date in users list

l0ud 12 years ago
parent
commit
450603e914
1 changed files with 4 additions and 1 deletions
  1. 4 1
      templates/admin/users/list.html

+ 4 - 1
templates/admin/users/list.html

@@ -25,11 +25,14 @@
 
 {% block table_row scoped %}
   <td class="avatar-small"><img src="{{ item.get_avatar(28) }}" class="avatar-small" alt=""></td>
-  <td colspan="2" class="lead-cell">
+  <td class="lead-cell">
   	<strong>{{ item.username }}</strong> <span class="muted">{{ item.email }}</span>{% if item.activation > 0 %} <span class="label tooltip-top" title="{% if item.activation == 1 -%}
   	{% trans %}This user has not yet validated his e-mail address.{% endtrans %}
   	{%- else -%}
   	{% trans %}This user is awaiting admin approval.{% endtrans %}
   	{%- endif %}">{% trans %}Inactive{% endtrans %}</span>{% endif %}
   </td>
+  <td>
+	{{ item.join_date|date("DATETIME_FORMAT") }}
+  </td>
 {% endblock%}