aboutsummaryrefslogtreecommitdiff
path: root/pyaggr3g470r/templates
diff options
context:
space:
mode:
authorCédric Bonhomme <kimble.mandel@gmail.com>2013-11-01 09:17:30 +0100
committerCédric Bonhomme <kimble.mandel@gmail.com>2013-11-01 09:17:30 +0100
commit3ff48f23fc2c566dff575d187d94bce717ddf485 (patch)
tree3ca04605cf48c500a70eaa67bac969eef0ff30e9 /pyaggr3g470r/templates
parentManagement page has been updated. (diff)
downloadnewspipe-3ff48f23fc2c566dff575d187d94bce717ddf485.tar.gz
newspipe-3ff48f23fc2c566dff575d187d94bce717ddf485.tar.bz2
newspipe-3ff48f23fc2c566dff575d187d94bce717ddf485.zip
Added new template for the list of feeds.
Diffstat (limited to 'pyaggr3g470r/templates')
-rw-r--r--pyaggr3g470r/templates/feeds.html11
1 files changed, 11 insertions, 0 deletions
diff --git a/pyaggr3g470r/templates/feeds.html b/pyaggr3g470r/templates/feeds.html
new file mode 100644
index 00000000..0893f982
--- /dev/null
+++ b/pyaggr3g470r/templates/feeds.html
@@ -0,0 +1,11 @@
+{% extends "layout.html" %}
+{% block content %}
+<div class="container">
+ <h1>You are subscribed to the following feeds</h1>
+ <ul>
+ {% for feed in feeds %}
+ <li><a href="/feed/{{ feed.id }}">{{ feed.title }}</a></li>
+ {% endfor %}
+ </ul>
+</div><!-- /.container -->
+{% endblock %} \ No newline at end of file
bgstack15