Files @ 2a720bd46bb4
Branch filter:

Location: symposion_app/pinaxcon/raffle/urls.py

Joel Addison
Tickets for LCA2021

Disable lots of inventory that does not exist for a virtual conf.
Add Swag Badge category and product.
Adjust attendee profile to hide irrelevant questions.
from django.conf.urls import url
from pinaxcon.raffle import views


urlpatterns = [
    url(r"^$", views.raffle_view, name="raffle-home"),
    url(r'^tickets/', views.raffle_view, name="raffle-tickets"),
    url(r'^draw/(?P<raffle_id>[0-9]+)/$', views.draw_raffle_ticket, name="raffle-draw"),
    url(r'^draw/redraw/([0-9]+)/$', views.raffle_redraw, name="raffle-redraw"),
    url(r'^draw/', views.draw_raffle_ticket, name="raffle-draw"),
]