This commit is contained in:
Trey t
2023-06-15 23:44:47 -05:00
parent f0a4b2f717
commit d21a547e4b
10 changed files with 82 additions and 9 deletions

7
equipment/urls.py Normal file
View File

@@ -0,0 +1,7 @@
from django.urls import path
from . import views
urlpatterns = [
path('all/', views.all_equipment, name='all equipment'),
]