diff --git a/registrasion/urls.py b/registrasion/urls.py index ac7faace42b3e9f3ef52f10eb5f6dff9cfb2b7ad..4d7463883683c6ca91134a74c4857d9b13b4890b 100644 --- a/registrasion/urls.py +++ b/registrasion/urls.py @@ -4,16 +4,17 @@ from django.conf.urls import include from django.conf.urls import url from .views import ( - product_category, + amend_registration, checkout, credit_note, + edit_profile, + guided_registration, invoice, + invoice_access, manual_payment, + product_category, refund, - invoice_access, - edit_profile, - guided_registration, - amend_registration, + review, ) @@ -33,6 +34,7 @@ public = [ name="invoice_access"), url(r"^profile$", edit_profile, name="attendee_edit"), url(r"^register$", guided_registration, name="guided_registration"), + url(r"^review$", review, name="review"), url(r"^register/([0-9]+)$", guided_registration, name="guided_registration"), ]