diff options
author | Johannes Raggam <raggam-nl@adm.at> | 2011-06-07 15:36:14 (GMT) |
---|---|---|
committer | Johannes Raggam <raggam-nl@adm.at> | 2011-06-07 15:36:14 (GMT) |
commit | ede9fa059b6cbc82c7fd64c2f8009c9a250bc971 (patch) | |
tree | 8ad37f34ed8c62c15b258b57b7dff169653d4ef9 | |
parent | 5e8c752980b9a654dccdb1d6cc65e96b3d08cf13 (diff) |
fallback when calendar links to /programm instead of /program
-rw-r--r-- | urls.py | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -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')), ) |