equal
deleted
inserted
replaced
92 url(r'^help/', help, name="help"), |
92 url(r'^help/', help, name="help"), |
93 |
93 |
94 # notifications |
94 # notifications |
95 ## workspace followup |
95 ## workspace followup |
96 url(r'^followup/$', followup, name="followup"), |
96 url(r'^followup/$', followup, name="followup"), |
97 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"), |
98 ## text notifications |
98 ## text notifications |
99 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"), |
100 ## embed |
100 ## embed |
101 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"), |
102 |
102 |