# HG changeset patch # User Dennis Fink # Date 2015-10-22 23:21:59 # Node ID 573e4516205296e4e6cce44ea1c107b49707459b # Parent 506a87e3d9515b735c3fc6752b83476151d5c36e Remove ennstatus about page diff --git a/ennstatus/status/views.py b/ennstatus/status/views.py --- a/ennstatus/status/views.py +++ b/ennstatus/status/views.py @@ -40,8 +40,3 @@ def single(server_name): server = single_server(server_name.lower()) kwargs = {server['server_type'].lower(): [server]} return render_template('status/index.html', **kwargs) - - -@status_page.route('/about') -def about(): - return render_template('status/about.html') diff --git a/ennstatus/templates/status/about.html b/ennstatus/templates/status/about.html deleted file mode 100644 --- a/ennstatus/templates/status/about.html +++ /dev/null @@ -1,14 +0,0 @@ -{% extends "base.html" %} - -{% set title = "Ënnstatus - About" %} - -{% block content %} -
-

Ënnstatus - About

-

Ënnstatus provides the user with vital information about the status of the organizations Tor servers.

-

Export

-

/api/export -> /api/export/json/all

-

/api/export/<any("json", "xml")> -> /api/export/<any("json", "xml")>/all

-

/api/export/<any("json", "xml")>/<any("all", "exit", "bridge", "relay", "single")>

-
-{% endblock %}