aboutsummaryrefslogtreecommitdiff
path: root/src/web/templates/about_more.html
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2017-04-06 13:27:52 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2017-04-06 13:27:52 +0200
commit9c8a6d28ac5780ca0634e0757e97fba0c5b4817e (patch)
tree483ae87d84c2c0219149968c1a27034513169600 /src/web/templates/about_more.html
parentvalidate app.json (diff)
parentfixed postdeploy script. (diff)
downloadnewspipe-9c8a6d28ac5780ca0634e0757e97fba0c5b4817e.tar.gz
newspipe-9c8a6d28ac5780ca0634e0757e97fba0c5b4817e.tar.bz2
newspipe-9c8a6d28ac5780ca0634e0757e97fba0c5b4817e.zip
merge and fixed conflict
Diffstat (limited to 'src/web/templates/about_more.html')
-rw-r--r--src/web/templates/about_more.html12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/web/templates/about_more.html b/src/web/templates/about_more.html
new file mode 100644
index 00000000..dd7088a5
--- /dev/null
+++ b/src/web/templates/about_more.html
@@ -0,0 +1,12 @@
+{% extends "layout.html" %}
+{% block content %}
+<div class="container">
+ <ul class="list-group">
+ <li class="list-group-item">Newspipe version: <a href="https://github.com/newspipe/newspipe/releases/tag/{{newspipe_version}}">{{newspipe_version}}</a></li>
+ <li class="list-group-item">Running on Heroku: {{on_heroku}}</li>
+ <li class="list-group-item">Registration: {{registration}}</li>
+ <li class="list-group-item">Python version: {{python_version}}</li>
+ <li class="list-group-item">Number of users: {{nb_users}}</li>
+ </ul>
+</div><!-- /.container -->
+{% endblock %}
bgstack15