]> git.parisson.com Git - telemeta.git/commitdiff
update user list order
authorGuillaume Pellerin <yomguy@parisson.com>
Fri, 28 Nov 2014 16:14:09 +0000 (17:14 +0100)
committerGuillaume Pellerin <yomguy@parisson.com>
Fri, 28 Nov 2014 16:14:09 +0000 (17:14 +0100)
telemeta/templates/telemeta/inc/user_list.html

index 8874bc07962bafa69af604eb22758e478247753d..4e41af879b4b6eb75ecea4f0098cde2546be5db3 100644 (file)
@@ -3,18 +3,18 @@
 
   <table class="listing" width="100%">
    <thead>
-    <tr><th>{% trans "User"%}</th>
-    <th>{% trans "First Name"%}</th>
     <th>{% trans "Last Name"%}</th>
+    <th>{% trans "First Name"%}</th>
+    <tr><th>{% trans "User"%}</th>
     <th>{% trans "E-mail"%}</th>
     <th>{% trans "Groups"%}</th>
     </tr>
    </thead><tbody>
     {% for user in users %}
     <tr>
-     <td><a href="{% url "telemeta-profile-detail" user.username %}">{{user.username}}</a></td>
-     <td>{{ user.first_name }}</td>
      <td>{{ user.last_name }}</td>
+     <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>{% for group in user.groups.all %}{{ group }} {% endfor %}</td>
     </tr>