From c04af6caa5d82d1f13ce8d293b15eb8c65c84022 Mon Sep 17 00:00:00 2001 From: Christopher Neugebauer Date: Tue, 20 Sep 2016 19:37:19 +1000 Subject: [PATCH] Adds ATTENDEE_PROFILE_MODEL --- pinaxcon/settings.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/pinaxcon/settings.py b/pinaxcon/settings.py index 60e9656..7cbba55 100644 --- a/pinaxcon/settings.py +++ b/pinaxcon/settings.py @@ -223,7 +223,11 @@ PROPOSAL_FORMS = { PINAX_PAGES_HOOKSET = "pinaxcon.hooks.PinaxPagesHookSet" PINAX_BOXES_HOOKSET = "pinaxcon.hooks.PinaxBoxesHookSet" -ATTENDEE_PROFILE_FORM = "pinaxcon.registrasion.forms.ProfileForm" +# Registrasion Attendee profile model +ATTENDEE_PROFILE_MODEL = "pinaxcon.registrasion.models.AttendeeProfile" +# Registrasion attendee profile form -- must act on ATTENDEE_PROFILE_FORM +# You only need to provide this if you're customising the form from the default +# ATTENDEE_PROFILE_FORM = "pinaxcon.registrasion.forms.ProfileForm" # Use nose to run all tests TEST_RUNNER = 'django_nose.NoseTestSuiteRunner'