Files @ cc4249083219
Branch filter:

Location: symposion_app/registrasion/urls.py

Christopher Neugebauer
Applying a voucher to a cart now uses the voucher code rather than the voucher object. Adds tests for constraints on vouchers.
1
2
3
4
5
6
7
8
from django.conf.urls import url, patterns

urlpatterns = patterns(
    "registrasion.views",
    url(r"^category/([0-9]+)$", "product_category", name="product_category"),
    url(r"^checkout$", "checkout", name="checkout"),
    url(r"^invoice/([0-9]+)$", "invoice", name="invoice"),
)