X-Git-Url: https://git.mdrn.pl/edumed.git/blobdiff_plain/d0f0e1412cc42d366b234e798dfb68feed05d751..d555d988764995ea1f9f5ece46f453a66f09b334:/comment/urls.py?ds=sidebyside diff --git a/comment/urls.py b/comment/urls.py deleted file mode 100644 index ef48089..0000000 --- a/comment/urls.py +++ /dev/null @@ -1,11 +0,0 @@ -# -*- coding: utf-8 -*- -from django.conf.urls import patterns, url - -from .views import CommentDocumentList, CommentDocument - - -urlpatterns = patterns( - '', - url('^$', CommentDocumentList.as_view(), name='comment_document_index'), - url('^(?P[^/]+)/$', CommentDocument.as_view(), name='comment_document') -)