Files @ e726ff21a8ff
Branch filter:

Location: symposion_app/vendor/symposion/speakers/urls.py

James Polley
Create regidesk app

Shows summary of all attendees with a paid ticket, including
boarding_pass status.

Currently, regidesk allows staff with the requisite permission the
ability to view the checkin status of attendees, and email the user
their boarding pass email.

Included is a view for the user to retrieve their own QR code (in case
they got the plain-text version of the email, they can use this to
download an image to their phone for faster checkin)
from django.conf.urls import url

from .views import (
    speaker_create,
    speaker_create_token,
    speaker_edit,
    speaker_profile,
    speaker_create_staff
)

urlpatterns = [
    url(r"^create/$", speaker_create, name="speaker_create"),
    url(r"^create/(\w+)/$", speaker_create_token, name="speaker_create_token"),
    url(r"^edit/(?:(?P<pk>\d+)/)?$", speaker_edit, name="speaker_edit"),
    url(r"^profile/(?P<pk>\d+)/$", speaker_profile, name="speaker_profile"),
    url(r"^staff/create/(\d+)/$", speaker_create_staff, name="speaker_create_staff"),
]