Add /feeds
This commit is contained in:
parent
c5869024e0
commit
85ae466d3b
4 changed files with 54 additions and 8 deletions
|
|
@ -2,8 +2,13 @@
|
|||
|
||||
from django.urls import path
|
||||
|
||||
from feeds.views import IndexView
|
||||
from feeds.views import FeedsView, IndexView
|
||||
|
||||
app_name = "feeds"
|
||||
|
||||
urlpatterns = [
|
||||
# /
|
||||
path("", IndexView.as_view(), name="index"),
|
||||
# /feeds
|
||||
path("feeds", FeedsView.as_view(), name="feeds"),
|
||||
]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue