aboutsummaryrefslogtreecommitdiff
path: root/pyaggr3g470r/templates/feeds.html
diff options
context:
space:
mode:
Diffstat (limited to 'pyaggr3g470r/templates/feeds.html')
-rw-r--r--pyaggr3g470r/templates/feeds.html2
1 files changed, 2 insertions, 0 deletions
diff --git a/pyaggr3g470r/templates/feeds.html b/pyaggr3g470r/templates/feeds.html
index b78b0a1b..c8024caa 100644
--- a/pyaggr3g470r/templates/feeds.html
+++ b/pyaggr3g470r/templates/feeds.html
@@ -11,6 +11,7 @@
<th>Title</th>
<th>Site</th>
<th>Articles</th>
+ <th>Actions</th>
</tr>
</thead>
<tbody>
@@ -20,6 +21,7 @@
<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="/delete_feed/{{ feed.oid }}"><i class="glyphicon glyphicon-remove" title="Delete this feed"></i></a></td>
</tr>
{% endfor %}
</tbody>
bgstack15