aboutsummaryrefslogtreecommitdiffstats
path: root/pysite/views/main/jams/index.py
diff options
context:
space:
mode:
authorGravatar Gareth Coles <[email protected]>2018-05-17 14:33:56 +0100
committerGravatar Gareth Coles <[email protected]>2018-05-17 14:33:56 +0100
commitb1c1b5b0bec07a15141577b8cc4939b9071b1d28 (patch)
treee0d01a4fc80e5a9dbde0b0032b2d748eef38a26d /pysite/views/main/jams/index.py
parentCommas are hard (diff)
Restructure code jams page layout
Diffstat (limited to 'pysite/views/main/jams/index.py')
-rw-r--r--pysite/views/main/jams/index.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/pysite/views/main/jams/index.py b/pysite/views/main/jams/index.py
new file mode 100644
index 00000000..56f079fc
--- /dev/null
+++ b/pysite/views/main/jams/index.py
@@ -0,0 +1,7 @@
+from pysite.base_route import TemplateView
+
+
+class JamsIndexView(TemplateView):
+ path = "/jams"
+ name = "jams.index"
+ template = "main/jams/info.html"