Update HTML
This commit is contained in:
parent
efc4a26340
commit
6f544db209
8 changed files with 137 additions and 41 deletions
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
from django.urls import path
|
||||
|
||||
from feeds.views import FeedsView, IndexView
|
||||
from feeds.views import APIView, FeedsView, IndexView, add_feeds
|
||||
|
||||
app_name = "feeds"
|
||||
|
||||
|
|
@ -11,4 +11,8 @@ urlpatterns = [
|
|||
path("", IndexView.as_view(), name="index"),
|
||||
# /feeds
|
||||
path("feeds", FeedsView.as_view(), name="feeds"),
|
||||
# /add
|
||||
path("add", add_feeds, name="add"),
|
||||
# /api
|
||||
path("api", APIView.as_view(), name="api"),
|
||||
]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue