aboutsummaryrefslogtreecommitdiffstats
path: root/pysite/views/staff/index.py
diff options
context:
space:
mode:
authorGravatar Gareth Coles <[email protected]>2018-03-29 16:11:17 +0100
committerGravatar Gareth Coles <[email protected]>2018-03-29 16:11:17 +0100
commit67618068683037b7529ee14e2a17a0ba23d75e26 (patch)
tree32e5e9ff51821334541425f44e0fef4d0734747b /pysite/views/staff/index.py
parentFix OAuth unit test (diff)
Fix up route names
Diffstat (limited to 'pysite/views/staff/index.py')
-rw-r--r--pysite/views/staff/index.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pysite/views/staff/index.py b/pysite/views/staff/index.py
index 19e89333..683b3a77 100644
--- a/pysite/views/staff/index.py
+++ b/pysite/views/staff/index.py
@@ -4,7 +4,7 @@ from pysite.base_route import RouteView
class StaffView(RouteView):
path = "/"
- name = "staff"
+ name = "staff.index"
def get(self):
return self.render("staff/staff.html")