Files @ dfcd2acc7466
Branch filter:

Location: symposion_app/pinaxcon/raffle/urls.py

Clinton Roy
create penguin tickets through their category
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"),
]