Files @ e726ff21a8ff
Branch filter:

Location: symposion_app/vendor/symposion/proposals/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 (
    proposal_submit,
    proposal_submit_kind,
    proposal_detail,
    proposal_edit,
    proposal_speaker_manage,
    proposal_cancel,
    proposal_leave,
    proposal_pending_join,
    proposal_pending_decline,
    document_create,
    document_delete,
    document_download,
)

urlpatterns = [
    url(r"^submit/$", proposal_submit, name="proposal_submit"),
    url(r"^submit/([\w\-]+)/$", proposal_submit_kind, name="proposal_submit_kind"),
    url(r"^(\d+)/$", proposal_detail, name="proposal_detail"),
    url(r"^(\d+)/edit/$", proposal_edit, name="proposal_edit"),
    url(r"^(\d+)/speakers/$", proposal_speaker_manage, name="proposal_speaker_manage"),
    url(r"^(\d+)/cancel/$", proposal_cancel, name="proposal_cancel"),
    url(r"^(\d+)/leave/$", proposal_leave, name="proposal_leave"),
    url(r"^(\d+)/join/$", proposal_pending_join, name="proposal_pending_join"),
    url(r"^(\d+)/decline/$", proposal_pending_decline, name="proposal_pending_decline"),

    url(r"^(\d+)/document/create/$", document_create, name="proposal_document_create"),
    url(r"^document/(\d+)/delete/$", document_delete, name="proposal_document_delete"),
    url(r"^document/(\d+)/([^/]+)$", document_download, name="proposal_document_download"),
]