Files @ e726ff21a8ff
Branch filter:

Location: symposion_app/vendor/symposion/sponsorship/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 django.views.generic import TemplateView

from .views import (
    sponsor_apply,
    sponsor_add,
    sponsor_zip_logo_files,
    sponsor_detail
)

urlpatterns = [
    url(r"^$", TemplateView.as_view(template_name="symposion/sponsorship/list.html"), name="sponsor_list"),
    url(r"^apply/$", sponsor_apply, name="sponsor_apply"),
    url(r"^add/$", sponsor_add, name="sponsor_add"),
    url(r"^ziplogos/$", sponsor_zip_logo_files, name="sponsor_zip_logos"),
    url(r"^(?P<pk>\d+)/$", sponsor_detail, name="sponsor_detail"),
]