11 lines
313 B
Python
11 lines
313 B
Python
from django.urls import path
|
|
|
|
from transport.views import emergency_contacts, bus_roll, bus_summary
|
|
|
|
app_name = 'transport'
|
|
|
|
urlpatterns = [
|
|
path("contacts/", emergency_contacts, name="emergency_contacts"),
|
|
path("roll/", bus_roll, name="bus_roll"),
|
|
path("summary/", bus_summary, name="bus_summary"),
|
|
] |