From de05845887181f949780f5627570713b4d3ca93b Mon Sep 17 00:00:00 2001 From: Cédric Bonhomme Date: Thu, 6 Apr 2017 07:49:12 +0200 Subject: Added a page which displays some information about the instance. --- src/web/templates/about_more.html | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 src/web/templates/about_more.html (limited to 'src/web/templates') diff --git a/src/web/templates/about_more.html b/src/web/templates/about_more.html new file mode 100644 index 00000000..0b934aab --- /dev/null +++ b/src/web/templates/about_more.html @@ -0,0 +1,10 @@ +{% extends "layout.html" %} +{% block content %} +
+ +
+{% endblock %} -- cgit From 9540d3341b6492b0c903b042288d3271988be4dd Mon Sep 17 00:00:00 2001 From: Cédric Bonhomme Date: Thu, 6 Apr 2017 07:51:11 +0200 Subject: Updated about page. --- src/web/templates/about.html | 1 + 1 file changed, 1 insertion(+) (limited to 'src/web/templates') diff --git a/src/web/templates/about.html b/src/web/templates/about.html index c2d0ae4d..70ae0a5f 100644 --- a/src/web/templates/about.html +++ b/src/web/templates/about.html @@ -12,6 +12,7 @@ redistribute the source code according to the Affero GPL license.') }}

{{ _('Found a bug? Report it here.') }}

+

More information about this instance.

{{ _('Help') }}

-- cgit From bb71e242b67b8bf7baca1ca1c4f47624ffd77738 Mon Sep 17 00:00:00 2001 From: Cédric Bonhomme Date: Thu, 6 Apr 2017 07:57:09 +0200 Subject: Displays if the the instance is running on Heroku. --- src/web/templates/about_more.html | 1 + 1 file changed, 1 insertion(+) (limited to 'src/web/templates') diff --git a/src/web/templates/about_more.html b/src/web/templates/about_more.html index 0b934aab..47c321ca 100644 --- a/src/web/templates/about_more.html +++ b/src/web/templates/about_more.html @@ -3,6 +3,7 @@
  • Newspipe version: {{newspipe_version}}
  • +
  • Running on Heroku: {{on_heroku}}
  • Python version: {{python_version}}
  • Number of users: {{nb_users}}
-- cgit From 7312031dbc8ab5e15c329ae97295cb4c0982fd5e Mon Sep 17 00:00:00 2001 From: Cédric Bonhomme Date: Thu, 6 Apr 2017 08:01:52 +0200 Subject: Added registration status. --- src/web/templates/about_more.html | 1 + 1 file changed, 1 insertion(+) (limited to 'src/web/templates') diff --git a/src/web/templates/about_more.html b/src/web/templates/about_more.html index 47c321ca..dd7088a5 100644 --- a/src/web/templates/about_more.html +++ b/src/web/templates/about_more.html @@ -4,6 +4,7 @@
  • Newspipe version: {{newspipe_version}}
  • Running on Heroku: {{on_heroku}}
  • +
  • Registration: {{registration}}
  • Python version: {{python_version}}
  • Number of users: {{nb_users}}
-- cgit