diff options
Diffstat (limited to 'config')
-rw-r--r-- | config/base_urls.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/config/base_urls.py b/config/base_urls.py index e77f4f5..6e4e624 100644 --- a/config/base_urls.py +++ b/config/base_urls.py @@ -16,7 +16,7 @@ import products.views from locations.views import MapDataList #from income.views import MonthlyInvoiceView, DownloadMonthlyInvoiceView -from posts.views import PostRSSFeedView +from posts.jrnl_views import JrnlRSSFeedView admin.autodiscover() @@ -37,7 +37,7 @@ urlpatterns = [ path(r'planner/', include('planner.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'feed.xml', JrnlRSSFeedView(),name="feed"), path(r'sitemap.xml', sitemap, {'sitemaps': sitemaps}), path(r'links/', include('links.urls')), path(r'jrnl/', include('posts.urls.jrnl_urls', namespace='jrnl')), |