Changeset - 3a6b4125e974
[Not reviewed]
0 2 0
Christopher Neugebauer - 8 years ago 2016-04-01 11:34:06
chrisjrn@gmail.com
Bugfix
2 files changed with 4 insertions and 1 deletions:
0 comments (0 inline, 0 general)
registrasion/models.py
Show inline comments
...
 
@@ -48,2 +48,4 @@ class AttendeeProfileBase(models.Model):
 

	
 
    objects = InheritanceManager()
 

	
 
    @classmethod
registrasion/views.py
Show inline comments
...
 
@@ -175,2 +175,3 @@ def handle_profile(request, prefix):
 
        profile = attendee.attendeeprofilebase
 
        profile = rego.AttendeeProfileBase.objects.get_subclass(pk=profile.id)
 
    except ObjectDoesNotExist:
...
 
@@ -190,3 +191,3 @@ def handle_profile(request, prefix):
 
    initial = {}
 
    if name_field is not None:
 
    if profile is None and name_field is not None:
 
        initial[name_field] = speaker_name
0 comments (0 inline, 0 general)