diff options
Diffstat (limited to 'config/base_urls.py')
-rw-r--r-- | config/base_urls.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/config/base_urls.py b/config/base_urls.py index 24c85df..906f7e6 100644 --- a/config/base_urls.py +++ b/config/base_urls.py @@ -18,6 +18,7 @@ import products.views from locations.views import MapDataList from income.views import MonthlyInvoiceView, DownloadMonthlyInvoiceView +from posts.views import PostRSSFeedView admin.autodiscover() @@ -36,6 +37,7 @@ urlpatterns = [ path(r'admin/', admin.site.urls), path(r'luximages/insert/', utils.views.insert_image), path(r'luxproduct/insert/', products.views.insert_products), + path(r'feed.xml', PostRSSFeedView(),name="feed"), path(r'sitemap.xml', sitemap, {'sitemaps': sitemaps}), path(r'links/', include('links.urls')), path(r'newsletter/', include('lttr.urls')), @@ -54,7 +56,7 @@ urlpatterns = [ path(r'book-notes/', include('books.urls')), path(r'people/', include('people.urls')), path(r'dialogues/', include('sightings.urls', namespace='sightings')), - path(r'field-notes/', include('fieldnotes.urls', namespace='fieldnotes')), + 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')), |