aboutsummaryrefslogtreecommitdiff
path: root/pyaggr3g470r
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2013-12-03 21:38:14 +0100
committerCédric Bonhomme <cedric@cedricbonhomme.org>2013-12-03 21:38:14 +0100
commit931d6d0f50f32faaa19d6476e0f8c0e06f85ab02 (patch)
tree2c37119971c377dd0fa35cd9a0d18bcbead982f5 /pyaggr3g470r
parentPerformance improvement: direct acces to articles in the database (without us... (diff)
downloadnewspipe-931d6d0f50f32faaa19d6476e0f8c0e06f85ab02.tar.gz
newspipe-931d6d0f50f32faaa19d6476e0f8c0e06f85ab02.tar.bz2
newspipe-931d6d0f50f32faaa19d6476e0f8c0e06f85ab02.zip
Updated /feeds page.
Diffstat (limited to 'pyaggr3g470r')
-rw-r--r--pyaggr3g470r/templates/feeds.html14
1 files changed, 8 insertions, 6 deletions
diff --git a/pyaggr3g470r/templates/feeds.html b/pyaggr3g470r/templates/feeds.html
index 4bacf996..5723f863 100644
--- a/pyaggr3g470r/templates/feeds.html
+++ b/pyaggr3g470r/templates/feeds.html
@@ -7,6 +7,7 @@
<thead>
<tr>
<th>#</th>
+ <th>Status</th>
<th>Title</th>
<th>Site</th>
<th>Articles</th>
@@ -17,16 +18,17 @@
{% for feed in feeds|sort(attribute="title") %}
<tr>
<td>{{ loop.index }}</td>
- <td><a href="/feed/{{ feed.oid }}">{{ feed.title }}</a></td>
- <td><a href="{{ feed.site_link }}">{{ feed.site_link }}</a></td>
- <td>{{ feed.articles|count }}</td>
<td>
{% if feed.enabled %}
- <a href="/feed/{{ feed.oid }}"><i class="glyphicon glyphicon-eye-open" title="Feed enabled"></i></a>
+ <i class="glyphicon glyphicon-eye-open" title="Feed enabled"></i>
{% else %}
- <a href="/feed/{{ feed.oid }}"><i class="glyphicon glyphicon-eye-close" title="Feed disabled"></i></a>
+ <i class="glyphicon glyphicon-eye-close" title="Feed disabled"></i>
{% endif %}
- <a href="/edit_feed/{{ feed.oid }}"><i class="glyphicon glyphicon-info-sign" title="Information"></i></a>
+ </td>
+ <td><a href="/feed/{{ feed.oid }}">{{ feed.title }}</a></td>
+ <td><a href="{{ feed.site_link }}">{{ feed.site_link }}</a></td>
+ <td>{{ feed.articles|count }}</td>
+ <td>
<a href="/articles/{{ feed.oid }}"><i class="glyphicon glyphicon-th-list" title="All articles"></i></a>
<a href="/edit_feed/{{ feed.oid }}"><i class="glyphicon glyphicon-edit" title="Edit this feed"></i></a>
<a href="/delete_feed/{{ feed.oid }}"><i class="glyphicon glyphicon-remove" title="Delete this feed"></i></a>
bgstack15