mirror of
https://github.com/etnguyen03/tjdests.git
synced 2025-04-28 12:49:49 -04:00
11 lines
254 B
Python
11 lines
254 B
Python
from django.urls import path
|
|
|
|
from . import views
|
|
|
|
app_name = "destinations"
|
|
|
|
urlpatterns = [
|
|
path("", views.StudentDestinationListView.as_view(), name="students"),
|
|
path("colleges", views.CollegeDestinationListView.as_view(), name="colleges"),
|
|
]
|