Update HTML

This commit is contained in:
Joakim Hellsén 2024-01-30 05:37:14 +01:00
commit 6f544db209
8 changed files with 137 additions and 41 deletions

View file

@ -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"),
]