2016-03-31 11:10:17 +11:00
|
|
|
from django.conf.urls import url, patterns
|
2016-03-03 13:40:44 -08:00
|
|
|
|
|
|
|
|
urlpatterns = patterns(
|
|
|
|
|
"registrasion.views",
|
|
|
|
|
url(r"^category/([0-9]+)$", "product_category", name="product_category"),
|
2016-03-04 12:22:01 -08:00
|
|
|
url(r"^checkout$", "checkout", name="checkout"),
|
|
|
|
|
url(r"^invoice/([0-9]+)$", "invoice", name="invoice"),
|
2016-03-23 14:51:04 +11:00
|
|
|
url(r"^invoice/([0-9]+)/pay$", "pay_invoice", name="pay_invoice"),
|
2016-03-31 16:01:59 +11:00
|
|
|
url(r"^profile$", "edit_profile", name="attendee_edit"),
|
2016-03-24 11:33:11 +11:00
|
|
|
url(r"^register$", "guided_registration", name="guided_registration"),
|
2016-03-25 14:51:39 +11:00
|
|
|
url(r"^register/([0-9]+)$", "guided_registration",
|
|
|
|
|
name="guided_registration"),
|
2016-03-03 13:40:44 -08:00
|
|
|
)
|