19 lines
388 B
Python
19 lines
388 B
Python
from django.urls import path
|
|
|
|
from . import views
|
|
|
|
app_name = "paperwork"
|
|
|
|
urlpatterns = [
|
|
path(
|
|
"certifications/by_uid/<str:uid>",
|
|
views.MemberCertificationListView.as_view(),
|
|
name="member_certifications",
|
|
),
|
|
path(
|
|
"certifications/<str:cert_name>_Certification.pdf",
|
|
views.certification_pdf,
|
|
name="certification_pdf",
|
|
),
|
|
]
|