symposion_app/registrasion/urls.py

14 lines
585 B
Python
Raw Normal View History

from django.conf.urls import url, patterns
urlpatterns = patterns(
"registrasion.views",
url(r"^category/([0-9]+)$", "product_category", name="product_category"),
url(r"^checkout$", "checkout", name="checkout"),
url(r"^invoice/([0-9]+)$", "invoice", name="invoice"),
2016-03-23 03:51:04 +00:00
url(r"^invoice/([0-9]+)/pay$", "pay_invoice", name="pay_invoice"),
2016-03-31 05:01:59 +00:00
url(r"^profile$", "edit_profile", name="attendee_edit"),
url(r"^register$", "guided_registration", name="guided_registration"),
2016-03-25 03:51:39 +00:00
url(r"^register/([0-9]+)$", "guided_registration",
name="guided_registration"),
)