urls.py 168 B

12345678
  1. from django.conf.urls import url
  2. from . import views
  3. urlpatterns = [
  4. url(r'^services/(?P<pk>[0-9]+)/$', views.ServiceDetail.as_view(), name='service-detail'),
  5. ]