From 0dd0d9c44722f4d4b16fe5654c634b5ac2337f13 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Markus=20Zapke-Gru=CC=88ndemann?= Date: Fri, 6 Jan 2012 09:28:13 +0100 Subject: Added view for all events. CSS needs some love. --- sublab_project/urls.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'sublab_project/urls.py') diff --git a/sublab_project/urls.py b/sublab_project/urls.py index 94c46ff..40c4822 100644 --- a/sublab_project/urls.py +++ b/sublab_project/urls.py @@ -8,6 +8,7 @@ admin.autodiscover() from news.models import News + urlpatterns = patterns('', # Examples: # Uncomment the admin/doc line below to enable admin documentation: @@ -16,6 +17,7 @@ urlpatterns = patterns('', url(r'^admin/', include(admin.site.urls)), url(r'^projekte/', include('projects.urls')), url(r'^news/', include('news.urls')), + url(r'^termine/', include('calendarium.urls')), url(r'^$', ListView.as_view( queryset=News.objects.all()[:5], template_name='home.html'), name='home'), -- cgit v1.2.1