aboutsummaryrefslogtreecommitdiffstats
path: root/pysite
diff options
context:
space:
mode:
authorGravatar Gareth Coles <[email protected]>2018-05-22 12:18:27 +0100
committerGravatar Gareth Coles <[email protected]>2018-05-22 12:18:27 +0100
commit08d9231ab4b4feab2c29ebdec71dcb71e3edced6 (patch)
tree932bf4e1d31b3e1262df65cd905731e2d915b337 /pysite
parentUIKit is pushy. (diff)
Revision of the rules, and a channels page
Diffstat (limited to 'pysite')
-rw-r--r--pysite/views/main/about/channels.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/pysite/views/main/about/channels.py b/pysite/views/main/about/channels.py
new file mode 100644
index 00000000..2e5496f9
--- /dev/null
+++ b/pysite/views/main/about/channels.py
@@ -0,0 +1,7 @@
+from pysite.base_route import TemplateView
+
+
+class ChannelsView(TemplateView):
+ path = "/about/channels"
+ name = "about.channels"
+ template = "main/about/channels.html"