diff options
author | luxagraf <sng@luxagraf.net> | 2018-05-09 09:39:48 -0400 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2018-05-09 09:39:48 -0400 |
commit | d2db3633ccdc70098b04eea25492327bcb82b685 (patch) | |
tree | 82f3dc2e7b8ef7a8fca3d7bb74232d70c36c5593 /app/notes/urls.py | |
parent | 1ac6c0b6fb2f0e0f8a92fbedf39eb39e7fa7676f (diff) |
Changed Notes app to be simpler
Diffstat (limited to 'app/notes/urls.py')
-rw-r--r-- | app/notes/urls.py | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/app/notes/urls.py b/app/notes/urls.py index 0f9fad7..3c47c3d 100644 --- a/app/notes/urls.py +++ b/app/notes/urls.py @@ -12,11 +12,6 @@ urlpatterns = [ name="detail-txt" ), url( - r'(?P<year>\d{4})/(?P<month>\d{2})/(?P<slug>[-\w]+).amp$', - views.NoteDetailViewAMP.as_view(), - name="detail-amp" - ), - url( r'(?P<year>\d{4})/(?P<month>\d{2})/(?P<slug>[-\w]+)$', views.NoteDetailView.as_view(), name="detail" @@ -31,8 +26,6 @@ urlpatterns = [ views.NoteYearArchiveView.as_view(), name="list_year" ), - - url( r'(?P<year>\d{4})/(?P<month>\d{2})/$', views.date_list, |