2017-04-17 22:55:48 +10:00
|
|
|
from registrasion.reporting import views as rv
|
2016-04-07 19:19:19 +10:00
|
|
|
|
2016-08-26 13:53:40 +10:00
|
|
|
from django.conf.urls import include
|
|
|
|
from django.conf.urls import url
|
2016-03-03 13:40:44 -08:00
|
|
|
|
2016-08-25 19:51:36 +10:00
|
|
|
from .views import (
|
2016-09-14 14:59:01 +10:00
|
|
|
amend_registration,
|
2017-01-09 18:57:49 +11:00
|
|
|
badge,
|
2017-01-09 19:39:27 +11:00
|
|
|
badges,
|
2016-08-25 19:51:36 +10:00
|
|
|
checkout,
|
|
|
|
credit_note,
|
2016-09-14 14:59:01 +10:00
|
|
|
edit_profile,
|
2016-10-06 12:44:06 -07:00
|
|
|
extend_reservation,
|
2016-09-14 14:59:01 +10:00
|
|
|
guided_registration,
|
2016-08-25 19:51:36 +10:00
|
|
|
invoice,
|
2016-09-14 14:59:01 +10:00
|
|
|
invoice_access,
|
2017-01-08 09:52:49 +11:00
|
|
|
invoice_mailout,
|
2016-08-25 19:51:36 +10:00
|
|
|
manual_payment,
|
2016-09-14 14:59:01 +10:00
|
|
|
product_category,
|
2016-08-25 19:51:36 +10:00
|
|
|
refund,
|
2016-09-14 14:59:01 +10:00
|
|
|
review,
|
2016-08-25 19:51:36 +10:00
|
|
|
)
|
|
|
|
|
2016-08-26 13:53:40 +10:00
|
|
|
|
|
|
|
public = [
|
2016-09-03 14:22:32 +10:00
|
|
|
url(r"^amend/([0-9]+)$", amend_registration, name="amend_registration"),
|
2017-01-09 18:57:49 +11:00
|
|
|
url(r"^badge/([0-9]+)$", badge, name="badge"),
|
2017-01-09 19:39:27 +11:00
|
|
|
url(r"^badges$", badges, name="badges"),
|
2016-08-25 19:51:36 +10:00
|
|
|
url(r"^category/([0-9]+)$", product_category, name="product_category"),
|
|
|
|
url(r"^checkout$", checkout, name="checkout"),
|
2016-09-03 15:16:46 +10:00
|
|
|
url(r"^checkout/([0-9]+)$", checkout, name="checkout"),
|
2016-08-25 19:51:36 +10:00
|
|
|
url(r"^credit_note/([0-9]+)$", credit_note, name="credit_note"),
|
2016-10-06 12:44:06 -07:00
|
|
|
url(r"^extend/([0-9]+)$", extend_reservation, name="extend_reservation"),
|
2016-08-25 19:51:36 +10:00
|
|
|
url(r"^invoice/([0-9]+)$", invoice, name="invoice"),
|
|
|
|
url(r"^invoice/([0-9]+)/([A-Z0-9]+)$", invoice, name="invoice"),
|
2016-04-07 19:19:19 +10:00
|
|
|
url(r"^invoice/([0-9]+)/manual_payment$",
|
2016-08-25 19:51:36 +10:00
|
|
|
manual_payment, name="manual_payment"),
|
2016-04-11 11:07:24 +10:00
|
|
|
url(r"^invoice/([0-9]+)/refund$",
|
2016-08-25 19:51:36 +10:00
|
|
|
refund, name="refund"),
|
|
|
|
url(r"^invoice_access/([A-Z0-9]+)$", invoice_access,
|
2016-04-08 13:15:24 +10:00
|
|
|
name="invoice_access"),
|
2017-01-08 09:52:49 +11:00
|
|
|
url(r"^invoice_mailout$", invoice_mailout, name="invoice_mailout"),
|
2016-08-25 19:51:36 +10:00
|
|
|
url(r"^profile$", edit_profile, name="attendee_edit"),
|
|
|
|
url(r"^register$", guided_registration, name="guided_registration"),
|
2016-09-14 14:59:01 +10:00
|
|
|
url(r"^review$", review, name="review"),
|
2016-08-25 19:51:36 +10:00
|
|
|
url(r"^register/([0-9]+)$", guided_registration,
|
2016-03-25 14:51:39 +11:00
|
|
|
name="guided_registration"),
|
2016-08-26 13:53:40 +10:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
|
|
reports = [
|
2016-09-03 12:16:52 +10:00
|
|
|
url(r"^$", rv.reports_list, name="reports_list"),
|
|
|
|
url(r"^attendee/?$", rv.attendee, name="attendee"),
|
2016-09-20 13:36:49 +10:00
|
|
|
url(r"^attendee_data/?$", rv.attendee_data, name="attendee_data"),
|
2016-09-03 12:16:52 +10:00
|
|
|
url(r"^attendee/([0-9]*)$", rv.attendee, name="attendee"),
|
|
|
|
url(r"^credit_notes/?$", rv.credit_notes, name="credit_notes"),
|
2017-01-15 07:48:43 +11:00
|
|
|
url(r"^manifest/?$", rv.manifest, name="manifest"),
|
2016-09-20 10:33:43 +10:00
|
|
|
url(r"^discount_status/?$", rv.discount_status, name="discount_status"),
|
2016-10-13 09:32:30 -07:00
|
|
|
url(r"^invoices/?$", rv.invoices, name="invoices"),
|
2016-09-19 15:03:21 +10:00
|
|
|
url(
|
|
|
|
r"^paid_invoices_by_date/?$",
|
|
|
|
rv.paid_invoices_by_date,
|
|
|
|
name="paid_invoices_by_date"
|
|
|
|
),
|
2016-09-03 12:16:52 +10:00
|
|
|
url(r"^product_status/?$", rv.product_status, name="product_status"),
|
2016-09-03 12:17:03 +10:00
|
|
|
url(r"^reconciliation/?$", rv.reconciliation, name="reconciliation"),
|
2016-09-20 19:18:09 +10:00
|
|
|
url(
|
|
|
|
r"^speaker_registrations/?$",
|
|
|
|
rv.speaker_registrations,
|
|
|
|
name="speaker_registrations",
|
|
|
|
),
|
2016-08-26 13:53:40 +10:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
|
|
urlpatterns = [
|
|
|
|
url(r"^reports/", include(reports)),
|
|
|
|
url(r"^", include(public)) # This one must go last.
|
2016-08-25 19:51:36 +10:00
|
|
|
]
|