aboutsummaryrefslogtreecommitdiff
path: root/src/web/templates
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2016-04-07 12:05:00 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2016-04-07 12:05:00 +0200
commit5b860175b5ac8071855bb0dae63eb2f9c97c5331 (patch)
treec3115441273c8e2f117895e20867aaae8a719acf /src/web/templates
parentRemoved the endponint to see stats about a user. (diff)
downloadnewspipe-5b860175b5ac8071855bb0dae63eb2f9c97c5331.tar.gz
newspipe-5b860175b5ac8071855bb0dae63eb2f9c97c5331.tar.bz2
newspipe-5b860175b5ac8071855bb0dae63eb2f9c97c5331.zip
Feeds are ordered by tittle in the feeds page.
Diffstat (limited to 'src/web/templates')
-rw-r--r--src/web/templates/feed_list.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/web/templates/feed_list.html b/src/web/templates/feed_list.html
index 2e7e8e71..093ed631 100644
--- a/src/web/templates/feed_list.html
+++ b/src/web/templates/feed_list.html
@@ -12,7 +12,7 @@
</tr>
</thead>
<tbody>
- {% for feed in feeds|sort(attribute="title") %}
+ {% for feed in feeds %}
<tr {% if not feed.enabled %}class="warning"{% endif %}>
<td>{{ loop.index }}</td>
<td>
bgstack15