Fix the urls dict of the module front

remotes/origin/enhancement/email-actions
David Barragán Merino 2014-07-08 12:47:48 +02:00
parent 558ac79c5d
commit a07c6a9590
1 changed files with 15 additions and 9 deletions

View File

@ -20,15 +20,21 @@ from django_sites import get_by_id as get_site_by_id
urls = { urls = {
"home": "/", "home": "/",
"backlog": "/#/project/{0}/backlog/",
"taskboard": "/#/project/{0}/taskboard/{1}", "login": "/login",
"userstory": "/#/project/{0}/user-story/{1}", "change-password": "/change-password/{0}",
"task": "/#/project/{0}/tasks/{1}", "invitation": "/invitation/{0}",
"issue": "/#/project/{0}/issues/{1}",
"project-admin": "/#/project/{0}/admin", "backlog": "/project/{0}/backlog/",
"change-password": "/#/change-password/{0}", "taskboard": "/project/{0}/taskboard/{1}",
"invitation": "/#/invitation/{0}", "userstory": "/project/{0}/user-story/{1}",
"wiki": "/#/project/{0}/wiki/{1}" "task": "/project/{0}/tasks/{1}",
"issue": "/project/{0}/issues/{1}",
"wiki": "/project/{0}/wiki/{1}",
"project-admin": "/project/{0}/admin",
} }