From ede9fa059b6cbc82c7fd64c2f8009c9a250bc971 Mon Sep 17 00:00:00 2001 From: Johannes Raggam Date: Tue, 7 Jun 2011 17:36:14 +0200 Subject: fallback when calendar links to /programm instead of /program diff --git a/urls.py b/urls.py index e77334c..4432a53 100644 --- a/urls.py +++ b/urls.py @@ -7,6 +7,11 @@ admin.autodiscover() urlpatterns = patterns('', (r'^admin/', include(admin.site.urls)), (r'^program/', include('program.urls')), + (r'^programm/', include('program.urls')), # programcalendar.js has to link + # to /programm, so that deliverance integration works. that would + # break django compat, so this url rule is added. come up with a bttr + # solution and implement it to avoid redundancy and hacks. + # i don't care yet. (r'^nop', include('nop.urls')), (r'^tinymce/', include('tinymce.urls')), ) -- cgit v0.10.2