X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/e9327dee290c524806c89e1c3cb546f95ee51e52..55bc643c16dc56cf2377bd5c4d6e924d5fc62698:/wolnelektury/urls.py diff --git a/wolnelektury/urls.py b/wolnelektury/urls.py index 4ec1b3713..90895a544 100644 --- a/wolnelektury/urls.py +++ b/wolnelektury/urls.py @@ -11,6 +11,7 @@ admin.autodiscover() urlpatterns = patterns('wolnelektury.views', url(r'^$', 'main_page', name='main_page'), + url(r'^planowane/$', 'publish_plan', name='publish_plan'), url(r'^zegar/$', 'clock', name='clock'), @@ -39,6 +40,8 @@ urlpatterns += patterns('', # API (r'^api/', include('api.urls')), + url(r'^fullsearch/', include('search.urls')), + # Static files url(r'^%s(?P.*)$' % settings.MEDIA_URL[1:], 'django.views.static.serve', {'document_root': settings.MEDIA_ROOT, 'show_indexes': True}),