2016-03-03 21:40:44 +00:00
|
|
|
from django.conf.urls import url, patterns
|
|
|
|
|
|
|
|
urlpatterns = patterns(
|
|
|
|
"registrasion.views",
|
|
|
|
url(r"^category/([0-9]+)$", "product_category", name="product_category"),
|
2016-03-04 20:22:01 +00:00
|
|
|
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-24 01:58:23 +00:00
|
|
|
url(r"^profile$", "edit_profile", name="profile"),
|
2016-03-24 00:33:11 +00:00
|
|
|
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"),
|
2016-03-03 21:40:44 +00:00
|
|
|
)
|