8 lines
220 B
Python
8 lines
220 B
Python
from django.urls import path
|
|
from service.views import *
|
|
|
|
urlpatterns = [
|
|
path('services/', serviceFrontPage, name='serviceFrontPage'),
|
|
path('service/details/<str:slug>/', serviceDetail, name='serviceDetail'),
|
|
]
|