diff options
Diffstat (limited to 'config/base_urls.py')
-rw-r--r-- | config/base_urls.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/config/base_urls.py b/config/base_urls.py index e1ec3d4..19a8b43 100644 --- a/config/base_urls.py +++ b/config/base_urls.py @@ -59,7 +59,6 @@ urlpatterns = [ path(r'dialogues/', include('sightings.urls', namespace='sightings')), path(r'field-notes/', include('posts.urls.field_note_urls', namespace='fieldnote')), path(r'src/', include('posts.urls.src_urls', namespace='src')), - #path(r'essays/', include('essays.urls', namespace='essays')), path(r'work/', include('resume.urls', namespace='resume')), path(r'map', include('locations.urls', namespace='map')), path(r'map/', include('locations.urls', namespace='map')), @@ -68,7 +67,7 @@ urlpatterns = [ path(r'<slug>/', include('lttr.urls')), path(r'<slug>.txt', PageDetailTXTView.as_view()), path(r'<slug>', include('pages.urls', namespace='pages')), - path(r'<path>/<slug>/', PageDetailView.as_view()), + #path(r'<path>/<slug>/', PageDetailView.as_view()), ] + static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT) + static(settings.STATIC_URL, document_root=settings.STATIC_ROOT) |