aboutsummaryrefslogtreecommitdiff
path: root/pyaggr3g470r/templates/management.html
diff options
context:
space:
mode:
authorCédric Bonhomme <kimble.mandel@gmail.com>2013-10-13 14:56:36 +0200
committerCédric Bonhomme <kimble.mandel@gmail.com>2013-10-13 14:56:36 +0200
commita1d62197d3efcc7e2e8c6a77d078b3a0a73e5185 (patch)
tree5a5bdf2cd4afda48c41e7172a149267890df42e2 /pyaggr3g470r/templates/management.html
parentOptimizations in /home and /articles templates. (diff)
downloadnewspipe-a1d62197d3efcc7e2e8c6a77d078b3a0a73e5185.tar.gz
newspipe-a1d62197d3efcc7e2e8c6a77d078b3a0a73e5185.tar.bz2
newspipe-a1d62197d3efcc7e2e8c6a77d078b3a0a73e5185.zip
First implementation of /management page.
Diffstat (limited to 'pyaggr3g470r/templates/management.html')
-rw-r--r--pyaggr3g470r/templates/management.html14
1 files changed, 14 insertions, 0 deletions
diff --git a/pyaggr3g470r/templates/management.html b/pyaggr3g470r/templates/management.html
new file mode 100644
index 00000000..a50d16fb
--- /dev/null
+++ b/pyaggr3g470r/templates/management.html
@@ -0,0 +1,14 @@
+{% extends "layout.html" %}
+{% block content %}
+<div class="container">
+ <div class="jumbotron">
+ <h1>Subscriptions</h1>
+
+ </div>
+
+ <div class="jumbotron">
+ <h1>Database</h1>
+ <p>{{ nb_article }} articles are stored in the database.</p>
+ </div>
+</div><!-- /.container -->
+{% endblock %} \ No newline at end of file
bgstack15