From fe2b5e738e3a49d4cb76f7256a66504d11cbe015 Mon Sep 17 00:00:00 2001 From: Christopher Neugebauer Date: Fri, 26 May 2017 14:46:15 -0700 Subject: [PATCH] Adds the TICKET_PRODUCT_CATEGORY to settings --- pinaxcon/settings.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pinaxcon/settings.py b/pinaxcon/settings.py index 45863ff..bffc833 100644 --- a/pinaxcon/settings.py +++ b/pinaxcon/settings.py @@ -238,11 +238,17 @@ ATTENDEE_PROFILE_MODEL = "pinaxcon.registrasion.models.AttendeeProfile" # You only need to provide this if you're customising the form from the default # ATTENDEE_PROFILE_FORM = "pinaxcon.registrasion.forms.ProfileForm" +# Ticket product category -- used to identify which products must be available +# in order to register. +TICKET_PRODUCT_CATEGORY = 1 + + INVOICE_CURRENCY = "AUD" # Use nose to run all tests TEST_RUNNER = 'django_nose.NoseTestSuiteRunner' + # Tell nose to measure coverage on the 'foo' and 'bar' apps NOSE_ARGS = [ '--with-coverage',