urls.py 306 B

1234567891011
  1. from django.urls import path, include
  2. # Views
  3. from .views.home import home__view
  4. from .views.service_create import Service_Create__view
  5. app_name = 'platformrunning'
  6. urlpatterns = [
  7. path("", home__view, name="home"),
  8. path("service_create", Service_Create__view.as_view(), name="service_create"),
  9. ]