X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/28f2c56226ccce81a705d9a7c5dc4ba122ea0b7f..ae60b2a3949e96357477cc04f90fd0873cee8a92:/apps/dictionary/urls.py diff --git a/apps/dictionary/urls.py b/apps/dictionary/urls.py deleted file mode 100755 index 1a33af966..000000000 --- a/apps/dictionary/urls.py +++ /dev/null @@ -1,12 +0,0 @@ -# -*- 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. -# -from django.conf.urls.defaults import * -from dictionary.views import NotesView - -urlpatterns = patterns('dictionary.views', - url(r'^$', NotesView.as_view(), name='dictionary_notes'), - url(r'(?P[a-z]|0-9)/$', NotesView.as_view(), name='dictionary_notes'), -) -