aboutsummaryrefslogtreecommitdiffstats
path: root/pysite/views/main/info/help.py
diff options
context:
space:
mode:
authorGravatar Gareth Coles <[email protected]>2018-02-27 09:44:19 +0000
committerGravatar Gareth Coles <[email protected]>2018-02-27 09:44:19 +0000
commit6aaddfd14beaafed9a55a2c0074fbaad4dda0f50 (patch)
tree8b6d83e56c914383d9b9327ba942218d86a77d52 /pysite/views/main/info/help.py
parentfixes the coverage badge to point to the master branch (#29) (diff)
Move `/help` to `/info/help`
Diffstat (limited to 'pysite/views/main/info/help.py')
-rw-r--r--pysite/views/main/info/help.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/pysite/views/main/info/help.py b/pysite/views/main/info/help.py
new file mode 100644
index 00000000..06c021c2
--- /dev/null
+++ b/pysite/views/main/info/help.py
@@ -0,0 +1,10 @@
+# coding=utf-8
+from pysite.base_route import RouteView
+
+
+class HelpView(RouteView):
+ path = "/info/help"
+ name = "info/help"
+
+ def get(self):
+ return self.render("main/info/help.html")