Initial plant reference and basic login

This commit is contained in:
kit 2025-12-03 12:34:46 +00:00
parent a2dba58fe4
commit cada3c7357
31 changed files with 637 additions and 0 deletions

9
planterteque/urls.py Normal file
View file

@ -0,0 +1,9 @@
from django.urls import path
from . import views
app_name = "planterteque"
urlpatterns = [
path("", views.index, name="index"),
path("<int:plant_id>", views.reference, name="reference"),
]