2016-04-07 09:19:19 +00:00
|
|
|
import views
|
|
|
|
|
2016-03-31 00:10:17 +00:00
|
|
|
from django.conf.urls import url, patterns
|
2016-03-03 21:40:44 +00:00
|
|
|
|
|
|
|
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"),
|
2016-04-11 02:11:14 +00:00
|
|
|
url(r"^credit_note/([0-9]+)$", views.credit_note, name="credit_note"),
|
2016-03-04 20:22:01 +00:00
|
|
|
url(r"^invoice/([0-9]+)$", "invoice", name="invoice"),
|
2016-04-08 03:15:24 +00:00
|
|
|
url(r"^invoice/([0-9]+)/([A-Z0-9]+)$", views.invoice, name="invoice"),
|
2016-04-07 09:19:19 +00:00
|
|
|
url(r"^invoice/([0-9]+)/manual_payment$",
|
|
|
|
views.manual_payment, name="manual_payment"),
|
2016-04-11 01:07:24 +00:00
|
|
|
url(r"^invoice/([0-9]+)/refund$",
|
|
|
|
views.refund, name="refund"),
|
2016-04-08 03:15:24 +00:00
|
|
|
url(r"^invoice_access/([A-Z0-9]+)$", views.invoice_access,
|
|
|
|
name="invoice_access"),
|
2016-03-31 05:01:59 +00:00
|
|
|
url(r"^profile$", "edit_profile", name="attendee_edit"),
|
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
|
|
|
)
|