]> git.parisson.com Git - telemeta.git/commitdiff
add user.date_joined
authorGuillaume Pellerin <yomguy@parisson.com>
Fri, 28 Nov 2014 16:18:07 +0000 (17:18 +0100)
committerGuillaume Pellerin <yomguy@parisson.com>
Fri, 28 Nov 2014 16:18:07 +0000 (17:18 +0100)
telemeta/templates/telemeta/inc/user_list.html

index 4e41af879b4b6eb75ecea4f0098cde2546be5db3..65e5e3ee312487d42ef5d8197ff25784af2b5be9 100644 (file)
@@ -3,10 +3,12 @@
 
   <table class="listing" width="100%">
    <thead>
+    <tr>
     <th>{% trans "Last Name"%}</th>
     <th>{% trans "First Name"%}</th>
-    <tr><th>{% trans "User"%}</th>
+    <th>{% trans "User"%}</th>
     <th>{% trans "E-mail"%}</th>
+    <th>{% trans "Date added"%}</th>
     <th>{% trans "Groups"%}</th>
     </tr>
    </thead><tbody>
@@ -16,6 +18,7 @@
      <td>{{ user.first_name }}</td>
      <td><a href="{% url "telemeta-profile-detail" user.username %}">{{user.username}}</a></td>
      <td><a href="mailto:{{ user.email }}">{{ user.email }}</a></td>
+     <td>{{ user.date_joined }}</td>
      <td>{% for group in user.groups.all %}{{ group }} {% endfor %}</td>
     </tr>
     {% endfor %}