Attempt at Django 1.7
[wolnelektury.git] / wolnelektury / urls.py
index 6c25451..abe872f 100644 (file)
@@ -1,15 +1,16 @@
 # -*- coding: utf-8 -*-
+# This file is part of Wolnelektury, licensed under GNU Affero GPLv3 or later.
+# Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
+#
 import os
 
-from django.conf.urls.defaults import *
+from django.conf.urls import include, patterns, url
 from django.conf import settings
 from django.contrib import admin
 from django.views.generic import RedirectView
 import wolnelektury_core.views
 
 
-admin.autodiscover()
-
 urlpatterns = patterns('wolnelektury_core.views',
     url(r'^$', 'main_page', name='main_page'),
     url(r'^planowane/$', 'publish_plan', name='publish_plan'),