diff options
author | luxagraf <sng@luxagraf.net> | 2020-12-02 12:41:14 -0500 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2020-12-02 12:41:14 -0500 |
commit | 8b2b5dec69a1d5d3c9e19c5eda48d1d6f706f9b4 (patch) | |
tree | 8ef75a6df028cdf04b2ad603cfd92a587049b15b /config | |
parent | d4e55690d3293f375cb207693e9b02b39b4a940e (diff) |
ready to get rid of photos model for media model
Diffstat (limited to 'config')
-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 61dd565..687ad88 100644 --- a/config/base_urls.py +++ b/config/base_urls.py @@ -7,7 +7,6 @@ from django.views.generic.base import RedirectView from pages.views import PageDetailView, PageDetailTXTView, HomePageList from locations.models import WritingbyCountrySitemap -from photos.models import PhotoGallerySitemap from books.models import BookSitemap from posts.models import PostSitemap from pages.models import PageSitemap @@ -48,7 +47,7 @@ urlpatterns = [ path(r'walks/', include('locations.walk_urls')), path(r'locations/', include('locations.urls')), #path(r'expenses/', include('expenses.urls', namespace='expenses')), - path(r'photos/', include('photos.urls')), + #path(r'photos/', include('photos.urls')), path(r'guide/', include('posts.urls.guide_urls', namespace='guide')), path(r'essay/', include('posts.urls.essay_urls')), re_path(r'^essay/$', RedirectView.as_view(url='/essays/')), |