tjdests/tjdests/apps/destinations/urls.py
2021-04-19 18:50:03 -04:00

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"),
]