diff --git a/registrasion/urls.py b/registrasion/urls.py index 8f2e16632e6f78d2e5c50fb651fec50ada87229c..322ee62c94c22db61826d44e265eba1dd34e4d71 100644 --- a/registrasion/urls.py +++ b/registrasion/urls.py @@ -5,6 +5,7 @@ from django.conf.urls import url from .views import ( amend_registration, + badge, checkout, credit_note, edit_profile, @@ -22,6 +23,7 @@ from .views import ( public = [ url(r"^amend/([0-9]+)$", amend_registration, name="amend_registration"), + url(r"^badge/([0-9]+)$", badge, name="badge"), url(r"^category/([0-9]+)$", product_category, name="product_category"), url(r"^checkout$", checkout, name="checkout"), url(r"^checkout/([0-9]+)$", checkout, name="checkout"),