From d3a5e2d9edd8b1b334a699cd84d4803a0522f51e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Barrag=C3=A1n=20Merino?= Date: Tue, 29 Oct 2013 17:24:03 +0100 Subject: [PATCH] Added more url of the front app --- greenmine/front/__init__.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/greenmine/front/__init__.py b/greenmine/front/__init__.py index b0032380..1f9b2784 100644 --- a/greenmine/front/__init__.py +++ b/greenmine/front/__init__.py @@ -5,10 +5,15 @@ import django_sites as sites from django_jinja import library + URLS = { + "home": "/", + "backlog": "/#/project/{0}/backlog/", + "taskboard": "/#/project/{0}/taskboard/{1}", "userstory": "/#/project/{0}/user-story/{1}", "task": "/#/project/{0}/tasks/{1}", "issue": "/#/project/{0}/issues/{1}", + "project-admin": "/#/project/{0}/admin", "change-password": "/#/change-password/{0}", }