symposion_app/pinaxcon/proposals/forms.py

164 lines
4.5 KiB
Python
Raw Normal View History

import copy
from django import forms
2018-10-05 19:43:50 +00:00
from pinaxcon.proposals.fields import HelpTextField
from pinaxcon.proposals.models import TalkProposal, TutorialProposal, MiniconfProposal
from pinaxcon.proposals.models import SysAdminProposal, KernelProposal, OpenHardwareProposal
2018-10-01 02:09:33 +00:00
from pinaxcon.proposals.models import GamesProposal, DevDevProposal, ArtTechProposal
2018-10-03 08:19:22 +00:00
from pinaxcon.proposals.models import OpenEdProposal, DocsProposal
2018-10-01 02:09:33 +00:00
DEFAULT_FIELDS = [
"title",
"target_audience",
"abstract",
"private_abstract",
"technical_requirements",
"project",
"project_url",
"recording_release",
"materials_release",
]
TALK_FORMAT_FIELDS = copy.copy(DEFAULT_FIELDS)
2018-09-30 04:04:28 +00:00
TALK_FORMAT_FIELDS.insert(2, "talk_format")
2017-03-05 07:34:15 +00:00
class ProposalForm(forms.ModelForm):
required_css_class = 'label-required'
def clean_description(self):
value = self.cleaned_data["description"]
if len(value) > 400:
raise forms.ValidationError(
u"The description must be less than 400 characters"
)
return value
2018-10-03 08:19:22 +00:00
class DocsProposalForm(ProposalForm):
class Meta:
model = DocsProposal
fields = TALK_FORMAT_FIELDS
class TalkProposalForm(ProposalForm):
class Meta:
model = TalkProposal
fields = [
"title",
"target_audience",
"abstract",
"private_abstract",
"technical_requirements",
"project",
"project_url",
"video_url",
"recording_release",
"materials_release",
]
class TutorialProposalForm(ProposalForm):
class Meta:
model = TutorialProposal
fields = [
"title",
"target_audience",
"abstract",
"private_abstract",
"technical_requirements",
"project",
"project_url",
"video_url",
"recording_release",
"materials_release",
]
class MiniconfProposalForm(ProposalForm):
class Meta:
model = MiniconfProposal
fields = [
"title",
"abstract",
"private_abstract",
"technical_requirements",
"recording_release",
"materials_release",
]
class SysadminProposalForm(ProposalForm):
class Meta:
model = SysAdminProposal
fields = TALK_FORMAT_FIELDS
class KernelProposalForm(ProposalForm):
class Meta:
model = KernelProposal
fields = DEFAULT_FIELDS
2018-10-05 19:43:50 +00:00
class GamesProposalForm(ProposalForm):
2018-10-06 20:27:23 +00:00
HELP_TEXT = ("If you have <strong>any</strong> questions please check our "
"<a href=\"https://gamesandfoss-lcaminiconf.github.io/lca2019/\" ref="
"\"noreferrer noopener\" target=\"_blank\">website</a> or contact "
2018-10-05 19:43:50 +00:00
"the games miniconf organisers. We're excited to hear from you! You "
"can reach us via email <a href=\"mailto:games@lca.lonely.coffee\">"
"games@lca.lonely.coffee</a> or twitter DM <a href=\"https://twitter"
".com/ducky_tape\" ref=\"noreferrer noopener\" target=\"_blank\">"
"@ducky_tape</a> and <a href=\"https://twitter.com/the_mcjones\" "
"ref=\"noreferrer noopener\" target=\"_blank\">@the_mcjones</a>.")
help_field = HelpTextField(text=HELP_TEXT, label='')
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
self.fields['private_abstract'].help_text = ("it would be helpful if "
"you could please include a <strong>rough</strong> (don't worry, "
"we know it might change!) Outline of your presentation, e.g. "
"'0-2mins intro, 2-5mins the problem, 5-10mins things, 10-15mins "
"stuff 15-20mins solution'.")
class Meta:
model = GamesProposal
2018-10-05 19:43:50 +00:00
fields = ['help_field', ] + TALK_FORMAT_FIELDS
class OpenHardwareProposalForm(ProposalForm):
class Meta:
model = OpenHardwareProposal
fields = TALK_FORMAT_FIELDS
class OpenEdProposalForm(ProposalForm):
class Meta:
model = OpenEdProposal
fields = DEFAULT_FIELDS
class DevDevProposalForm(ProposalForm):
class Meta:
model = DevDevProposal
fields = DEFAULT_FIELDS
class ArtTechProposalForm(ProposalForm):
class Meta:
2017-10-15 08:04:26 +00:00
ARTTECH_FIELDS = copy.copy(DEFAULT_FIELDS)
ARTTECH_FIELDS.remove("target_audience")
ARTTECH_FIELDS.append("talk_format")
ARTTECH_FIELDS.append("can_exhibit")
ARTTECH_FIELDS.append("exhibition_requirements")
model = ArtTechProposal
2017-10-15 08:04:26 +00:00
fields = ARTTECH_FIELDS