aboutsummaryrefslogtreecommitdiff
path: root/pyaggr3g470r/templates/admin
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2014-04-12 11:12:08 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2014-04-12 11:12:08 +0200
commit95f82ba64bf3894e9d5984927a771ea2c400c6a1 (patch)
tree8ff8d28e3bb58a7fe3db2324b7584b768dad891f /pyaggr3g470r/templates/admin
parentBugfix. (diff)
downloadnewspipe-95f82ba64bf3894e9d5984927a771ea2c400c6a1.tar.gz
newspipe-95f82ba64bf3894e9d5984927a771ea2c400c6a1.tar.bz2
newspipe-95f82ba64bf3894e9d5984927a771ea2c400c6a1.zip
And another minor bug fix.
Diffstat (limited to 'pyaggr3g470r/templates/admin')
-rw-r--r--pyaggr3g470r/templates/admin/user.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/pyaggr3g470r/templates/admin/user.html b/pyaggr3g470r/templates/admin/user.html
index 79463617..58668eb2 100644
--- a/pyaggr3g470r/templates/admin/user.html
+++ b/pyaggr3g470r/templates/admin/user.html
@@ -27,7 +27,7 @@
</tr>
</thead>
<tbody>
- {% for feed in user.feeds.all()|sort(attribute="name") %}
+ {% for feed in user.feeds|sort(attribute="title") %}
<tr>
<td>{{ loop.index }}</td>
<td><a href="/feed/{{ feed.id }}">{{ feed.title }}</a></td>
bgstack15