Add Django project
This commit is contained in:
parent
38575a6d42
commit
a70ccca169
21 changed files with 3691 additions and 1 deletions
9
feeds/urls.py
Normal file
9
feeds/urls.py
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
"""URLs for the feeds app."""
|
||||
|
||||
from django.urls import path
|
||||
|
||||
from feeds.views import IndexView
|
||||
|
||||
urlpatterns = [
|
||||
path("", IndexView.as_view(), name="index"),
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue