service listing
This commit is contained in:
parent
ea44f6f54a
commit
b367012d5c
22 changed files with 615 additions and 7 deletions
9
hub/services/urls.py
Normal file
9
hub/services/urls.py
Normal file
|
@ -0,0 +1,9 @@
|
|||
from django.urls import path
|
||||
from . import views
|
||||
|
||||
app_name = "services"
|
||||
|
||||
urlpatterns = [
|
||||
path("", views.service_list, name="service_list"),
|
||||
path("service/<int:pk>/", views.service_detail, name="service_detail"),
|
||||
]
|
Loading…
Add table
Add a link
Reference in a new issue