fnp
/
wolnelektury.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
fix duplicated shelves
[wolnelektury.git]
/
src
/
dictionary
/
urls.py
diff --git
a/src/dictionary/urls.py
b/src/dictionary/urls.py
index
2320f47
..
6df9a47
100755
(executable)
--- a/
src/dictionary/urls.py
+++ b/
src/dictionary/urls.py
@@
-5,7
+5,7
@@
from django.conf.urls import patterns, url
from dictionary.views import NotesView
from django.conf.urls import patterns, url
from dictionary.views import NotesView
-urlpatterns = patterns('dictionary.views',
+urlpatterns = patterns(
+ 'dictionary.views',
url(r'^$', NotesView.as_view(), name='dictionary_notes'),
)
url(r'^$', NotesView.as_view(), name='dictionary_notes'),
)
-