Changeset - 0107b24b37d6
[Not reviewed]
0 1 0
Christopher Neugebauer - 6 years ago 2018-07-05 21:15:01
chrisjrn@gmail.com
exclude reviewer
1 file changed with 1 insertions and 0 deletions:
0 comments (0 inline, 0 general)
pinaxcon/proposals/forms.py
Show inline comments
 
from django import forms
 
from symposion.proposals.forms import ProposalMixIn
 

	
 
from .models import ConferenceSpeaker, TalkProposal
 

	
 

	
 
class ConferenceSpeakerForm(forms.ModelForm):
 

	
 
    class Meta:
 
        model = ConferenceSpeaker
 
        exclude = [
 
            'user',
 
            'biography_html',
 
            'experience_html',
 
            'invite_email',
 
            'invite_token',
 
            'annotation',
 
            'reviewer',
 
        ]
 

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

	
 

	
 

	
 
class ProposalForm(forms.ModelForm, ProposalMixIn):
 

	
 
    def __init__(self, *a, **k):
 
        super(ProposalForm, self).__init__(*a, **k)
 
        self.description_required()
 
        self.abstract_required()
 
        self.fields["additional_notes"].help_text = ("Anything else "
 
            "you'd like the program committee to know when making their "
 
            "selection. This is not made public. "
 
            "Edit using "
 
            "<a href='http://daringfireball.net/projects/markdown/basics' "
 
            "target='_blank'>Markdown</a>.")
 

	
 
        for field in ("description", "abstract", "additional_notes"):
 
            self.fields[field].help_text += (" Please do not include "
 
                "any information that could identify you, as your proposal "
0 comments (0 inline, 0 general)