diff options
author | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2014-07-05 18:43:12 +0200 |
---|---|---|
committer | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2014-07-05 18:43:12 +0200 |
commit | c2db53bed6718a883f9edf9af4c4e012db03f6cd (patch) | |
tree | 205a4a720e0f0038e6bdf8d69e2e9041f58bb2a8 | |
parent | Updated NEWS.rst for the new release. (diff) | |
download | newspipe-c2db53bed6718a883f9edf9af4c4e012db03f6cd.tar.gz newspipe-c2db53bed6718a883f9edf9af4c4e012db03f6cd.tar.bz2 newspipe-c2db53bed6718a883f9edf9af4c4e012db03f6cd.zip |
Users are now sorted with the attribute 'last_seen'.
-rw-r--r-- | pyaggr3g470r/templates/admin/dashboard.html | 2 |
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 %} |