aboutsummaryrefslogtreecommitdiff
path: root/pyaggr3g470r/templates/admin
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2014-07-05 18:43:12 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2014-07-05 18:43:12 +0200
commitc2db53bed6718a883f9edf9af4c4e012db03f6cd (patch)
tree205a4a720e0f0038e6bdf8d69e2e9041f58bb2a8 /pyaggr3g470r/templates/admin
parentUpdated NEWS.rst for the new release. (diff)
downloadnewspipe-c2db53bed6718a883f9edf9af4c4e012db03f6cd.tar.gz
newspipe-c2db53bed6718a883f9edf9af4c4e012db03f6cd.tar.bz2
newspipe-c2db53bed6718a883f9edf9af4c4e012db03f6cd.zip
Users are now sorted with the attribute 'last_seen'.
Diffstat (limited to 'pyaggr3g470r/templates/admin')
-rw-r--r--pyaggr3g470r/templates/admin/dashboard.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/pyaggr3g470r/templates/admin/dashboard.html b/pyaggr3g470r/templates/admin/dashboard.html
index 4ed38b91..6d87b326 100644
--- a/pyaggr3g470r/templates/admin/dashboard.html
+++ b/pyaggr3g470r/templates/admin/dashboard.html
@@ -16,7 +16,7 @@
</tr>
</thead>
<tbody>
- {% for user in users|sort(attribute="nickname") %}
+ {% for user in users|sort(attribute="last_seen") %}
<tr {% if user.activation_key != "" %}class="warning"{% endif %} >
<td>{{ loop.index }}</td>
{% if user.id == current_user.id %}
bgstack15