From 9a4c3f0e95db55d1a3594f6978e40e2d646cf8b3 Mon Sep 17 00:00:00 2001 From: Christopher Neugebauer Date: Wed, 21 Sep 2016 16:40:49 +1000 Subject: [PATCH] Adds Currency --- pinaxcon/settings.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pinaxcon/settings.py b/pinaxcon/settings.py index 0f289a4..e98073c 100644 --- a/pinaxcon/settings.py +++ b/pinaxcon/settings.py @@ -237,6 +237,8 @@ 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" +INVOICE_CURRENCY = "AUD" + # Use nose to run all tests TEST_RUNNER = 'django_nose.NoseTestSuiteRunner'