diff options
Diffstat (limited to 'config')
-rw-r--r-- | config/base_urls.py | 5 | ||||
-rw-r--r-- | config/req.txt | 5 |
2 files changed, 5 insertions, 5 deletions
diff --git a/config/base_urls.py b/config/base_urls.py index f06651a..496d72b 100644 --- a/config/base_urls.py +++ b/config/base_urls.py @@ -33,9 +33,8 @@ urlpatterns = [ path(r'feed.xml', PostRSSFeedView(),name="feed"), path(r'sitemap.xml', sitemap, {'sitemaps': sitemaps}), #path(r'newsletter/', include('lttr.urls')), - path(r'podcast/', include('posts.urls.podcast_urls')), - re_path(r'^podcast/$', RedirectView.as_view(url='/reviews/')), - path(r'podcasts/', include('posts.urls.podcast_urls')), + path(r'podcasts/', include('podcasts.urls')), + path(r"feeds/podcasts/", include("podcasts.urls_feeds")), path(r'book-notes/', include('books.urls')), path(r'<slug>.txt', PageDetailTXTView.as_view()), path(r'<slug>', include('pages.urls', namespace='pages')), diff --git a/config/req.txt b/config/req.txt index 59de153..783ef4e 100644 --- a/config/req.txt +++ b/config/req.txt @@ -1,6 +1,5 @@ asgiref==3.4.1 -beautifulsoup4==4.10.0 -bleach==4.1.0 +beautifulsoup4 django-bleach django-debug-toolbar django-extensions django-gravatar2 django-orderable django-ses django-taggit django-typogrify Markdown jsmin Pillow psycopg2-binary boto3==1.19.7 botocore==1.22.7 certifi==2021.10.8 @@ -35,3 +34,5 @@ soupsieve==2.2.1 sqlparse==0.4.2 urllib3==1.26.7 webencodings==0.5.1 + +requests python-resize-image PyExifTool |