Files @ 8badb0cb99fa
Branch filter:

Location: symposion_app/pinaxcon/raffle/urls.py

Clinton Roy
first stab at making a room slot, still not quite there, think i have to make a separate slot for each time slot
from django.conf.urls import url
from pinaxcon.raffle import views


urlpatterns = [
    url(r'^tickets/', views.raffle_view),
    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"),
]