14 lines
228 B
Python
14 lines
228 B
Python
|
from django.urls import path
|
||
|
|
||
|
from . import views
|
||
|
|
||
|
app_name = "paperwork"
|
||
|
|
||
|
urlpatterns = [
|
||
|
path(
|
||
|
"certifications/by_uid/<str:uid>",
|
||
|
views.member_certifications,
|
||
|
name="member_certifications",
|
||
|
),
|
||
|
]
|