diff --git a/registrasion/urls.py b/registrasion/urls.py index ae6ac8a1c397ee3e24e08f4ada3342dc56e5595f..dab49b00f1ce4e72ab16de256061c2c11eb0f333 100644 --- a/registrasion/urls.py +++ b/registrasion/urls.py @@ -13,10 +13,12 @@ from .views import ( invoice_access, edit_profile, guided_registration, + amend_registration, ) public = [ + url(r"^amend/([0-9]+)$", amend_registration, name="amend_registration"), url(r"^category/([0-9]+)$", product_category, name="product_category"), url(r"^checkout$", checkout, name="checkout"), url(r"^credit_note/([0-9]+)$", credit_note, name="credit_note"),