Files @ 7fac10241ec7
Branch filter:

Location: symposion_app/vendor/symposion/speakers/forms.py

Joel Addison
Improve attendee reports

Display attendee profile data in normal table without DataTables so
sorting is not applied, causing data to be confusing to read.
Include item quantity in attendee data report for accurate schwag packing.
from django import forms

from symposion.speakers.models import Speaker


class SpeakerForm(forms.ModelForm):

    required_css_class = 'label-required'

    class Meta:
        model = Speaker
        fields = [
            "name",
            "biography",
            "experience",
            "photo",
            "telephone",
            "homepage",
            "twitter_username",
            "accessibility",
            "travel_assistance",
            "accommodation_assistance",
            "assistance",
            "agreement",
        ]

    def __init__(self, *a, **k):
        super(SpeakerForm, self).__init__(*a, **k)
        self.fields['agreement'].required = True

    def clean_twitter_username(self):
        value = self.cleaned_data["twitter_username"]
        if value.startswith("@"):
            value = value[1:]
        return value