add rss feed to articles
This commit is contained in:
parent
edf453244d
commit
3e35d179f5
5 changed files with 44 additions and 2 deletions
|
|
@ -1,5 +1,6 @@
|
|||
from django.urls import path
|
||||
from . import views
|
||||
from .feeds import ArticleRSSFeed
|
||||
|
||||
app_name = "services"
|
||||
|
||||
|
|
@ -19,6 +20,7 @@ urlpatterns = [
|
|||
path("provider/<slug:slug>/", views.provider_detail, name="provider_detail"),
|
||||
path("partner/<slug:slug>/", views.partner_detail, name="partner_detail"),
|
||||
path("articles/", views.article_list, name="article_list"),
|
||||
path("articles/rss/", ArticleRSSFeed(), name="article_rss"),
|
||||
path("article/<slug:slug>/", views.article_detail, name="article_detail"),
|
||||
path("contact/", views.leads.contact, name="contact"),
|
||||
path("contact/thank-you/", views.thank_you, name="thank_you"),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue