diff options
author | Cédric Bonhomme <kimble.mandel@gmail.com> | 2013-11-02 00:12:08 +0100 |
---|---|---|
committer | Cédric Bonhomme <kimble.mandel@gmail.com> | 2013-11-02 00:12:08 +0100 |
commit | d7c991251bfd08df09cdb6559a40c458592a8ee8 (patch) | |
tree | 658e205476b48b31ff7e5d0df26e9bf98564953c /pyaggr3g470r/templates/feeds.html | |
parent | Minor fix in the layout template. (diff) | |
download | newspipe-d7c991251bfd08df09cdb6559a40c458592a8ee8.tar.gz newspipe-d7c991251bfd08df09cdb6559a40c458592a8ee8.tar.bz2 newspipe-d7c991251bfd08df09cdb6559a40c458592a8ee8.zip |
Delete a feed from the table of feeds.
Diffstat (limited to 'pyaggr3g470r/templates/feeds.html')
-rw-r--r-- | pyaggr3g470r/templates/feeds.html | 2 |
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> |