19 |
19 |
20 urlpatterns += patterns('', |
20 urlpatterns += patterns('', |
21 url(r'^$', dashboard, name="index"), |
21 url(r'^$', dashboard, name="index"), |
22 url(r'^text/$', text_list, name="text"), |
22 url(r'^text/$', text_list, name="text"), |
23 url(r'^settings/$', settingss, name="settings"), |
23 url(r'^settings/$', settingss, name="settings"), |
|
24 url(r'^settings/design/$', settings_design, name="settings-design"), |
24 |
25 |
25 # system pages |
26 # system pages |
26 url(r'^i18n/setlang/(?P<lang_code>\w+)/$', i18n.set_language, name="setlang"), |
27 url(r'^i18n/setlang/(?P<lang_code>\w+)/$', i18n.set_language, name="setlang"), |
27 url(r'^unauthorized/$', unauthorized, name="unauthorized"), |
28 url(r'^unauthorized/$', unauthorized, name="unauthorized"), |
28 url(r'^timezone_set/$', timezone_set, name="timezone_set"), |
29 url(r'^timezone_set/$', timezone_set, name="timezone_set"), |
91 url(r'^help/', help, name="help"), |
92 url(r'^help/', help, name="help"), |
92 |
93 |
93 # notifications |
94 # notifications |
94 ## workspace followup |
95 ## workspace followup |
95 url(r'^followup/$', followup, name="followup"), |
96 url(r'^followup/$', followup, name="followup"), |
96 url(r'^followup/(?P<adminkey>\w*)/desactivate/$', desactivate_notification, name="desactivate-notification"), |
97 url(r'^followup/(?P<adminkey>\w*)/deactivate/$', desactivate_notification, name="desactivate-notification"), |
97 ## text notifications |
98 ## text notifications |
98 url(r'^text/(?P<key>\w*)/followup/$', text_followup, name="text-followup"), |
99 url(r'^text/(?P<key>\w*)/followup/$', text_followup, name="text-followup"), |
99 ## embed |
100 ## embed |
100 url(r'^text/(?P<key>\w*)/embed/$', text_embed, name="text-embed"), |
101 url(r'^text/(?P<key>\w*)/embed/$', text_embed, name="text-embed"), |
101 |
102 |