2022-02-15 17:12:06 -05:00
|
|
|
from django.urls import path
|
|
|
|
|
|
|
|
from . import views
|
2023-04-01 11:37:49 -04:00
|
|
|
from . import autocomplete_views
|
2022-02-15 17:12:06 -05:00
|
|
|
|
|
|
|
app_name = "paperwork"
|
|
|
|
|
|
|
|
urlpatterns = [
|
|
|
|
path(
|
|
|
|
"certifications/by_uid/<str:uid>",
|
2022-02-15 21:43:19 -05:00
|
|
|
views.MemberCertificationListView.as_view(),
|
2022-02-15 17:12:06 -05:00
|
|
|
name="member_certifications",
|
|
|
|
),
|
2023-02-02 15:08:48 -05:00
|
|
|
path(
|
|
|
|
"certifications/departments/",
|
|
|
|
views.department_certifications,
|
|
|
|
name="department_certifications",
|
|
|
|
),
|
2022-07-20 13:55:27 -04:00
|
|
|
path(
|
|
|
|
"certifications/<str:cert_name>_Certification.pdf",
|
|
|
|
views.certification_pdf,
|
|
|
|
name="certification_pdf",
|
|
|
|
),
|
2023-04-01 11:37:49 -04:00
|
|
|
path(
|
|
|
|
"certifications/version_autocomplete",
|
|
|
|
autocomplete_views.CertificationVersionAutocomplete.as_view(),
|
|
|
|
name="certification_version_autocomplete",
|
|
|
|
),
|
2022-02-15 17:12:06 -05:00
|
|
|
]
|