9 from cm.views.texts import * |
9 from cm.views.texts import * |
10 from cm.views.user import * |
10 from cm.views.user import * |
11 from cm.views.timezone import * |
11 from cm.views.timezone import * |
12 from cm.views.site import * |
12 from cm.views.site import * |
13 from cm.views.feeds import * |
13 from cm.views.feeds import * |
14 from cm.views.notifications import * |
14 from cm.views.followup import * |
15 from cm.views import i18n |
15 from cm.views import i18n |
16 |
16 |
17 urlpatterns = patterns('', |
17 urlpatterns = patterns('', |
18 ) |
18 ) |
19 |
19 |
86 # site |
86 # site |
87 url(r'^contact/', contact, name="contact"), |
87 url(r'^contact/', contact, name="contact"), |
88 url(r'^help/', help, name="help"), |
88 url(r'^help/', help, name="help"), |
89 |
89 |
90 # notifications |
90 # notifications |
91 ## workspace notifications |
91 ## workspace followup |
92 url(r'^notifications/$', notifications, name="notifications"), |
92 url(r'^followup/$', followup, name="followup"), |
93 url(r'^notification/(?P<adminkey>\w*)/desactivate/$', desactivate_notification, name="desactivate-notification"), |
93 url(r'^followup/(?P<adminkey>\w*)/desactivate/$', desactivate_notification, name="desactivate-notification"), |
94 ## text notifications |
94 ## text notifications |
95 url(r'^text/(?P<key>\w*)/notifications/$', text_notifications, name="text-notifications"), |
95 url(r'^text/(?P<key>\w*)/followup/$', text_followup, name="text-followup"), |
|
96 ## embed |
|
97 url(r'^text/(?P<key>\w*)/embed/$', text_embed, name="text-embed"), |
96 |
98 |
97 # feeds |
99 # feeds |
98 ## workspace feeds |
100 ## workspace feeds |
99 url(r'^feed/(?P<key>\w*)/$', private_feed, name="private-feed"), |
101 url(r'^feed/(?P<key>\w*)/$', private_feed, name="private-feed"), |
100 url(r'^feed/$', public_feed, name="public-feed"), |
102 url(r'^feed/$', public_feed, name="public-feed"), |