aviary first view and template

This commit is contained in:
gw3000 2023-07-01 09:21:58 +02:00
parent 462b9ff224
commit 5e5605524f
8 changed files with 61 additions and 21 deletions

9
aviary/urls.py Normal file
View file

@ -0,0 +1,9 @@
from django.urls import path
from .views import (
aviary_all
)
urlpatterns = [
path("all/", aviary_all, name="aviary_all"),
]