symposion_app/vendor/registrasion/urls.py

79 lines
2.6 KiB
Python
Raw Normal View History

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