devicehub-django/lot/urls.py

10 lines
216 B
Python
Raw Normal View History

2024-07-09 11:35:35 +00:00
from django.urls import path
from lot import views
app_name = 'lot'
urlpatterns = [
path("add/", views.NewLotView.as_view(), name="add"),
path("edit/<int:pk>/", views.EditLotView.as_view(), name="edit"),
]