10 lines
199 B
Python
10 lines
199 B
Python
|
|
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"),
|
||
|
|
]
|