mirror of
https://github.com/tjsga/studyguides.git
synced 2025-04-05 03:40:16 -04:00
13 lines
377 B
Python
13 lines
377 B
Python
from django.urls import path
|
|
|
|
from . import views
|
|
|
|
app_name = "courses"
|
|
|
|
urlpatterns = [
|
|
path("subject/<str:subject_url>/", views.subject_view, name="subject_view"),
|
|
path("tag/<str:tag>/", views.tag_view, name="tag"),
|
|
path("course/<str:subject_url>/<str:course_url>/", views.course_view, name="course_view"),
|
|
path("search/", views.search_view, name="search")
|
|
]
|