Compare commits
No commits in common. "5bf63fe046e1e99f773a18bcfe2138843428db8a" and "6557e60bfcde3c3fc3b2654bddc67d1adbe4a4eb" have entirely different histories.
5bf63fe046
...
6557e60bfc
11 changed files with 26 additions and 139 deletions
|
@ -61,103 +61,91 @@ class MiniconfProposalForm(ProposalForm):
|
||||||
pass
|
pass
|
||||||
|
|
||||||
|
|
||||||
class AIAndMachineLearningProposalForm(MiniconfProposalForm):
|
class AIAndMachineLearningForm(MiniconfProposalForm):
|
||||||
class Meta:
|
class Meta:
|
||||||
model = models.AIAndMachineLearningProposal
|
model = models.AIAndMachineLearningProposal
|
||||||
fields = TALK_FORMAT_FIELDS
|
fields = TALK_FORMAT_FIELDS
|
||||||
|
|
||||||
|
|
||||||
class DiversityEquityAndInclusionProposalForm(MiniconfProposalForm):
|
class DiversityEquityAndInclusionForm(MiniconfProposalForm):
|
||||||
class Meta:
|
class Meta:
|
||||||
model = models.DiversityEquityAndInclusionProposal
|
model = models.DiversityEquityAndInclusionProposal
|
||||||
fields = TALK_FORMAT_FIELDS
|
fields = TALK_FORMAT_FIELDS
|
||||||
|
|
||||||
|
|
||||||
class FOSSAndARM64ProposalForm(MiniconfProposalForm):
|
class FOSSAndARM64Form(MiniconfProposalForm):
|
||||||
class Meta:
|
class Meta:
|
||||||
model = models.FOSSAndARM64Proposal
|
model = models.FOSSAndARM64Proposal
|
||||||
fields = TALK_FORMAT_FIELDS
|
fields = TALK_FORMAT_FIELDS
|
||||||
|
|
||||||
|
|
||||||
class FOSSFundingandEconomicsProposalForm(MiniconfProposalForm):
|
class FOSSFundingandEconomicsForm(MiniconfProposalForm):
|
||||||
class Meta:
|
class Meta:
|
||||||
model = models.FOSSFundingandEconomicsProposal
|
model = models.FOSSFundingandEconomicsProposal
|
||||||
fields = TALK_FORMAT_FIELDS
|
fields = TALK_FORMAT_FIELDS
|
||||||
|
|
||||||
|
|
||||||
class FOSSInDailyLifeProposalForm(MiniconfProposalForm):
|
class FOSSInDailyLifeForm(MiniconfProposalForm):
|
||||||
class Meta:
|
class Meta:
|
||||||
model = models.FOSSInDailyLifeProposal
|
model = models.FOSSInDailyLifeProposal
|
||||||
fields = TALK_FORMAT_FIELDS
|
fields = TALK_FORMAT_FIELDS
|
||||||
|
|
||||||
|
|
||||||
class FOSSInEducationProposalForm(MiniconfProposalForm):
|
class FOSSInEducationForm(MiniconfProposalForm):
|
||||||
class Meta:
|
class Meta:
|
||||||
model = models.FOSSInEducationProposal
|
model = models.FOSSInEducationProposal
|
||||||
fields = TALK_FORMAT_FIELDS
|
fields = TALK_FORMAT_FIELDS
|
||||||
|
|
||||||
|
|
||||||
class KeynotePanelProposalForm(MiniconfProposalForm):
|
class LicensingAndLegalIssuesForm(MiniconfProposalForm):
|
||||||
class Meta:
|
|
||||||
model = models.KeynotePanelProposal
|
|
||||||
fields = TALK_FORMAT_FIELDS
|
|
||||||
|
|
||||||
|
|
||||||
class LicensingAndLegalIssuesProposalForm(MiniconfProposalForm):
|
|
||||||
class Meta:
|
class Meta:
|
||||||
model = models.LicensingAndLegalIssuesProposal
|
model = models.LicensingAndLegalIssuesProposal
|
||||||
fields = TALK_FORMAT_FIELDS
|
fields = TALK_FORMAT_FIELDS
|
||||||
|
|
||||||
|
|
||||||
class MobileDeviceUserFreedomProposalForm(MiniconfProposalForm):
|
class MobileDeviceUserFreedomForm(MiniconfProposalForm):
|
||||||
class Meta:
|
class Meta:
|
||||||
model = models.MobileDeviceUserFreedomProposal
|
model = models.MobileDeviceUserFreedomProposal
|
||||||
fields = TALK_FORMAT_FIELDS
|
fields = TALK_FORMAT_FIELDS
|
||||||
|
|
||||||
|
|
||||||
class ReproducibilityProposalForm(MiniconfProposalForm):
|
class ReproducibilityForm(MiniconfProposalForm):
|
||||||
class Meta:
|
class Meta:
|
||||||
model = models.ReproducibilityProposal
|
model = models.ReproducibilityProposal
|
||||||
fields = TALK_FORMAT_FIELDS
|
fields = TALK_FORMAT_FIELDS
|
||||||
|
|
||||||
|
|
||||||
class RightToRepairProposalForm(MiniconfProposalForm):
|
class RightToRepairForm(MiniconfProposalForm):
|
||||||
class Meta:
|
class Meta:
|
||||||
model = models.RightToRepairProposal
|
model = models.RightToRepairProposal
|
||||||
fields = TALK_FORMAT_FIELDS
|
fields = TALK_FORMAT_FIELDS
|
||||||
|
|
||||||
|
|
||||||
class SeleniumProposalForm(MiniconfProposalForm):
|
class ScienceOfCommunityForm(MiniconfProposalForm):
|
||||||
class Meta:
|
|
||||||
model = models.SeleniumProposal
|
|
||||||
fields = TALK_FORMAT_FIELDS
|
|
||||||
|
|
||||||
|
|
||||||
class ScienceOfCommunityProposalForm(MiniconfProposalForm):
|
|
||||||
class Meta:
|
class Meta:
|
||||||
model = models.ScienceOfCommunityProposal
|
model = models.ScienceOfCommunityProposal
|
||||||
fields = TALK_FORMAT_FIELDS
|
fields = TALK_FORMAT_FIELDS
|
||||||
|
|
||||||
|
|
||||||
class MemberProjectsProposalForm(MiniconfProposalForm):
|
class MemberProjectsForm(MiniconfProposalForm):
|
||||||
class Meta:
|
class Meta:
|
||||||
model = models.MemberProjectsProposal
|
model = models.MemberProjectsProposal
|
||||||
fields = TALK_FORMAT_FIELDS
|
fields = TALK_FORMAT_FIELDS
|
||||||
|
|
||||||
|
|
||||||
class SupportingUserGroupsProposalForm(MiniconfProposalForm):
|
class SupportingUserGroupsForm(MiniconfProposalForm):
|
||||||
class Meta:
|
class Meta:
|
||||||
model = models.SupportingUserGroupsProposal
|
model = models.SupportingUserGroupsProposal
|
||||||
fields = TALK_FORMAT_FIELDS
|
fields = TALK_FORMAT_FIELDS
|
||||||
|
|
||||||
|
|
||||||
class XMPPProposalForm(MiniconfProposalForm):
|
class XMPPForm(MiniconfProposalForm):
|
||||||
class Meta:
|
class Meta:
|
||||||
model = models.XMPPProposal
|
model = models.XMPPProposal
|
||||||
fields = TALK_FORMAT_FIELDS
|
fields = TALK_FORMAT_FIELDS
|
||||||
|
|
||||||
|
|
||||||
class WildCardProposalForm(MiniconfProposalForm):
|
class WildCardForm(MiniconfProposalForm):
|
||||||
class Meta:
|
class Meta:
|
||||||
model = models.WildCardProposal
|
model = models.WildCardProposal
|
||||||
fields = TALK_FORMAT_FIELDS
|
fields = TALK_FORMAT_FIELDS
|
||||||
|
|
|
@ -1,35 +0,0 @@
|
||||||
# Generated by Django 2.2.28 on 2024-05-23 05:11
|
|
||||||
|
|
||||||
from django.db import migrations, models
|
|
||||||
import django.db.models.deletion
|
|
||||||
|
|
||||||
|
|
||||||
class Migration(migrations.Migration):
|
|
||||||
|
|
||||||
dependencies = [
|
|
||||||
('symposion_proposals', '0003_auto_20170702_2250'),
|
|
||||||
('proposals', '0013_auto_20240515_0500'),
|
|
||||||
]
|
|
||||||
|
|
||||||
operations = [
|
|
||||||
migrations.CreateModel(
|
|
||||||
name='KeynotePanelProposal',
|
|
||||||
fields=[
|
|
||||||
('proposalbase_ptr', models.OneToOneField(auto_created=True, on_delete=django.db.models.deletion.CASCADE, parent_link=True, primary_key=True, serialize=False, to='symposion_proposals.ProposalBase')),
|
|
||||||
('target_audience', models.IntegerField(choices=[(4, 'Developer'), (3, 'Community'), (1, 'End User'), (2, 'Business')], help_text='Who is the target audience for your session?')),
|
|
||||||
('recording_release', models.BooleanField(default=True, help_text="I allow Software Freedom Conservancy to release any recordings of presentations covered by this proposal, on YouTube under the standard YouTube licence, and on other platforms under the Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International (<a href='https://creativecommons.org/licenses/by-nc-sa/4.0/'> CC BY-NC-SA 4.0</a>) licence.")),
|
|
||||||
('materials_release', models.BooleanField(default=True, help_text="I allow Software Freedom Conservancy to release any other material (such as slides) from presentations covered by this proposal, under the <a href='https://creativecommons.org/licenses/by-sa/4.0/'> Creative Commons Attribution-ShareAlike 4.0 International</a>")),
|
|
||||||
('primary_topic', models.IntegerField(choices=[(1, 'Linux'), (2, 'Software'), (3, 'Hardware'), (4, 'Firmware'), (5, 'System Administration / Operations'), (6, 'Security'), (7, 'Documentation'), (8, 'Community'), (9, 'Science & Data'), (10, 'Galleries, Libraries, Archives & Museums (GLAM)'), (11, 'Multimedia'), (12, 'Aerospace / UAV'), (13, 'Agriculture'), (14, 'Other')], help_text='What is the primary topic area for your session?', null=True)),
|
|
||||||
('experience_level', models.IntegerField(choices=[(1, 'Beginner'), (2, 'Intermediate'), (3, 'Advanced')], help_text='What level of experience will your session be pitched at?')),
|
|
||||||
('require_approval', models.BooleanField(default=False, help_text='Do you require further approval from your employer or institution before you can confirm your availability to present?')),
|
|
||||||
('content_warning', models.TextField(blank=True, help_text='This will be shown on the schedule to give attendees advanced warning of topics covered in the session. ', verbose_name='Content Warning')),
|
|
||||||
('content_warning_html', models.TextField(blank=True)),
|
|
||||||
('talk_format', models.IntegerField(choices=[(1, 'Lightning Talk (5-10 min)'), (2, 'Short Presentation (20-25 min)'), (3, 'Long Presentation (40-45 min)')], default=3, help_text='Please indicate your preferred talk length in the private abstract field below.')),
|
|
||||||
('ticket_acknowledgement', models.BooleanField(default=False, help_text='I understand that I will be required to purchase a conference ticket and arrange my own travel and accommodation.')),
|
|
||||||
],
|
|
||||||
options={
|
|
||||||
'verbose_name': 'Keynote panel talk proposal',
|
|
||||||
},
|
|
||||||
bases=('symposion_proposals.proposalbase',),
|
|
||||||
),
|
|
||||||
]
|
|
|
@ -1,35 +0,0 @@
|
||||||
# Generated by Django 2.2.28 on 2024-05-28 06:09
|
|
||||||
|
|
||||||
from django.db import migrations, models
|
|
||||||
import django.db.models.deletion
|
|
||||||
|
|
||||||
|
|
||||||
class Migration(migrations.Migration):
|
|
||||||
|
|
||||||
dependencies = [
|
|
||||||
('symposion_proposals', '0003_auto_20170702_2250'),
|
|
||||||
('proposals', '0014_keynotepanelproposal'),
|
|
||||||
]
|
|
||||||
|
|
||||||
operations = [
|
|
||||||
migrations.CreateModel(
|
|
||||||
name='SeleniumProposal',
|
|
||||||
fields=[
|
|
||||||
('proposalbase_ptr', models.OneToOneField(auto_created=True, on_delete=django.db.models.deletion.CASCADE, parent_link=True, primary_key=True, serialize=False, to='symposion_proposals.ProposalBase')),
|
|
||||||
('target_audience', models.IntegerField(choices=[(4, 'Developer'), (3, 'Community'), (1, 'End User'), (2, 'Business')], help_text='Who is the target audience for your session?')),
|
|
||||||
('recording_release', models.BooleanField(default=True, help_text="I allow Software Freedom Conservancy to release any recordings of presentations covered by this proposal, on YouTube under the standard YouTube licence, and on other platforms under the Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International (<a href='https://creativecommons.org/licenses/by-nc-sa/4.0/'> CC BY-NC-SA 4.0</a>) licence.")),
|
|
||||||
('materials_release', models.BooleanField(default=True, help_text="I allow Software Freedom Conservancy to release any other material (such as slides) from presentations covered by this proposal, under the <a href='https://creativecommons.org/licenses/by-sa/4.0/'> Creative Commons Attribution-ShareAlike 4.0 International</a>")),
|
|
||||||
('primary_topic', models.IntegerField(choices=[(1, 'Linux'), (2, 'Software'), (3, 'Hardware'), (4, 'Firmware'), (5, 'System Administration / Operations'), (6, 'Security'), (7, 'Documentation'), (8, 'Community'), (9, 'Science & Data'), (10, 'Galleries, Libraries, Archives & Museums (GLAM)'), (11, 'Multimedia'), (12, 'Aerospace / UAV'), (13, 'Agriculture'), (14, 'Other')], help_text='What is the primary topic area for your session?', null=True)),
|
|
||||||
('experience_level', models.IntegerField(choices=[(1, 'Beginner'), (2, 'Intermediate'), (3, 'Advanced')], help_text='What level of experience will your session be pitched at?')),
|
|
||||||
('require_approval', models.BooleanField(default=False, help_text='Do you require further approval from your employer or institution before you can confirm your availability to present?')),
|
|
||||||
('content_warning', models.TextField(blank=True, help_text='This will be shown on the schedule to give attendees advanced warning of topics covered in the session. ', verbose_name='Content Warning')),
|
|
||||||
('content_warning_html', models.TextField(blank=True)),
|
|
||||||
('talk_format', models.IntegerField(choices=[(1, 'Lightning Talk (5-10 min)'), (2, 'Short Presentation (20-25 min)'), (3, 'Long Presentation (40-45 min)')], default=3, help_text='Please indicate your preferred talk length in the private abstract field below.')),
|
|
||||||
('ticket_acknowledgement', models.BooleanField(default=False, help_text='I understand that I will be required to purchase a conference ticket and arrange my own travel and accommodation.')),
|
|
||||||
],
|
|
||||||
options={
|
|
||||||
'verbose_name': 'Selenium talk proposal',
|
|
||||||
},
|
|
||||||
bases=('symposion_proposals.proposalbase',),
|
|
||||||
),
|
|
||||||
]
|
|
|
@ -190,11 +190,6 @@ class FOSSInEducationProposal(MiniconfSessionProposal):
|
||||||
verbose_name = "FOSS in Education talk proposal"
|
verbose_name = "FOSS in Education talk proposal"
|
||||||
|
|
||||||
|
|
||||||
class KeynotePanelProposal(MiniconfSessionProposal):
|
|
||||||
class Meta:
|
|
||||||
verbose_name = "Keynote panel talk proposal"
|
|
||||||
|
|
||||||
|
|
||||||
class LicensingAndLegalIssuesProposal(MiniconfSessionProposal):
|
class LicensingAndLegalIssuesProposal(MiniconfSessionProposal):
|
||||||
class Meta:
|
class Meta:
|
||||||
verbose_name = "Licensing and Legal Issues talk proposal"
|
verbose_name = "Licensing and Legal Issues talk proposal"
|
||||||
|
@ -220,11 +215,6 @@ class ScienceOfCommunityProposal(MiniconfSessionProposal):
|
||||||
verbose_name = "Science of Community talk proposal"
|
verbose_name = "Science of Community talk proposal"
|
||||||
|
|
||||||
|
|
||||||
class SeleniumProposal(MiniconfSessionProposal):
|
|
||||||
class Meta:
|
|
||||||
verbose_name = "Selenium talk proposal"
|
|
||||||
|
|
||||||
|
|
||||||
class MemberProjectsProposal(MiniconfSessionProposal):
|
class MemberProjectsProposal(MiniconfSessionProposal):
|
||||||
class Meta:
|
class Meta:
|
||||||
verbose_name = "SFC Member Projects talk proposal"
|
verbose_name = "SFC Member Projects talk proposal"
|
||||||
|
|
|
@ -377,17 +377,15 @@ PROPOSAL_FORMS = {
|
||||||
"foss-funding-and-economics": "pinaxcon.proposals.forms.FOSSFundingandEconomicsProposalForm",
|
"foss-funding-and-economics": "pinaxcon.proposals.forms.FOSSFundingandEconomicsProposalForm",
|
||||||
"foss-in-daily-life": "pinaxcon.proposals.forms.FOSSInDailyLifeProposalForm",
|
"foss-in-daily-life": "pinaxcon.proposals.forms.FOSSInDailyLifeProposalForm",
|
||||||
"foss-in-education": "pinaxcon.proposals.forms.FOSSInEducationProposalForm",
|
"foss-in-education": "pinaxcon.proposals.forms.FOSSInEducationProposalForm",
|
||||||
"keynote-panel": "pinaxcon.proposals.forms.KeynotePanelProposalForm",
|
|
||||||
"licensing-and-legal-issues": "pinaxcon.proposals.forms.LicensingAndLegalIssuesProposalForm",
|
"licensing-and-legal-issues": "pinaxcon.proposals.forms.LicensingAndLegalIssuesProposalForm",
|
||||||
"mobile-device-user-freedom": "pinaxcon.proposals.forms.MobileDeviceUserFreedomProposalForm",
|
"mobile-device-user-freedom": "pinaxcon.proposals.forms.MobileDeviceUserFreedomProposalForm",
|
||||||
"reproducibility": "pinaxcon.proposals.forms.ReproducibilityProposalForm",
|
"reproducibility": "pinaxcon.proposals.forms.ReproducibilityProposalForm",
|
||||||
"right-to-repair": "pinaxcon.proposals.forms.RightToRepairProposalForm",
|
"right-to-repair": "pinaxcon.proposals.forms.RightToRepairProposalForm",
|
||||||
"selenium": "pinaxcon.proposals.forms.SeleniumProposalForm",
|
|
||||||
"science-of-community": "pinaxcon.proposals.forms.ScienceOfCommunityProposalForm",
|
"science-of-community": "pinaxcon.proposals.forms.ScienceOfCommunityProposalForm",
|
||||||
"member-projects": "pinaxcon.proposals.forms.MemberProjectsProposalForm",
|
"member-projects": "pinaxcon.proposals.forms.MemberProjectsProposalForm",
|
||||||
"supporting-user-groups": "pinaxcon.proposals.forms.SupportingUserGroupsProposalForm",
|
"supporting-user-groups": "pinaxcon.proposals.forms.SupportingUserGroupsProposalForm",
|
||||||
"xmpp": "pinaxcon.proposals.forms.XMPPProposalForm",
|
"xmpp": "pinaxcon.proposals.forms.XMPPProposalForm",
|
||||||
"wild-card": "pinaxcon.proposals.forms.WildCardProposalForm",
|
"wildcard": "pinaxcon.proposals.forms.WildCardProposalForm",
|
||||||
}
|
}
|
||||||
MAIN_CONFERENCE_PROPOSAL_KINDS = ("Talk",)
|
MAIN_CONFERENCE_PROPOSAL_KINDS = ("Talk",)
|
||||||
|
|
||||||
|
|
|
@ -22,7 +22,7 @@
|
||||||
<td>{{ proposal.number }}</td>
|
<td>{{ proposal.number }}</td>
|
||||||
<td>
|
<td>
|
||||||
<a href="{% url "review_detail" proposal.pk %}">
|
<a href="{% url "review_detail" proposal.pk %}">
|
||||||
<small><strong>{{ proposal.speaker }} <{{ proposal.speaker.email }}></strong></small>
|
<small><strong>{{ proposal.speaker }}</strong></small>
|
||||||
<br />
|
<br />
|
||||||
{{ proposal.title }}
|
{{ proposal.title }}
|
||||||
</a>
|
</a>
|
||||||
|
|
|
@ -56,18 +56,13 @@
|
||||||
{% endautoescape %}
|
{% endautoescape %}
|
||||||
|
|
||||||
{% if presentation.videos_split %}
|
{% if presentation.videos_split %}
|
||||||
<h2 class="mt-4">Videos</h4>
|
<h2 class="mt-4">Video</h4>
|
||||||
{% for v in presentation.youtube_videos %}
|
<video controls style="max-width: 640px">
|
||||||
<iframe width="560" height="315" src="{{ v }}" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
|
{% for video in presentation.videos_split %}
|
||||||
|
<source src="{{ video }}">
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
{% if v.other_videos %}
|
</video>
|
||||||
<video controls style="max-width: 640px">
|
<p style="margin-top: 1rem">Available formats:</p>
|
||||||
{% for video in presentation.other_videos %}
|
|
||||||
<source src="{{ video }}">
|
|
||||||
{% endfor %}
|
|
||||||
</video>
|
|
||||||
{% endif %}
|
|
||||||
<p style="margin-top: 1rem">Available sources:</p>
|
|
||||||
<ul>
|
<ul>
|
||||||
{% for video in presentation.videos_split %}
|
{% for video in presentation.videos_split %}
|
||||||
<li>{{ video|urlize }}</li>
|
<li>{{ video|urlize }}</li>
|
||||||
|
|
|
@ -28,7 +28,7 @@ django-reversion==3.0.8
|
||||||
django-sitetree==1.16.0
|
django-sitetree==1.16.0
|
||||||
django-taggit==1.3.0
|
django-taggit==1.3.0
|
||||||
django-timezone-field==4.1.2
|
django-timezone-field==4.1.2
|
||||||
easy-thumbnails==2.8.5
|
easy-thumbnails==2.7.0
|
||||||
bleach==3.2.1
|
bleach==3.2.1
|
||||||
pytz>=2020.1
|
pytz>=2020.1
|
||||||
django-ical==1.7.1
|
django-ical==1.7.1
|
||||||
|
|
|
@ -1,11 +1,10 @@
|
||||||
from django.conf import settings
|
|
||||||
from symposion.proposals.models import ProposalSection
|
from symposion.proposals.models import ProposalSection
|
||||||
|
|
||||||
|
|
||||||
def reviews(request):
|
def reviews(request):
|
||||||
sections = []
|
sections = []
|
||||||
manage_sections = {}
|
manage_sections = {}
|
||||||
for section in ProposalSection.objects.filter(section__conference__id=settings.CONFERENCE_ID):
|
for section in ProposalSection.objects.all():
|
||||||
if request.user.has_perm("reviews.can_review_%s" % section.section.slug):
|
if request.user.has_perm("reviews.can_review_%s" % section.section.slug):
|
||||||
sections.append(section)
|
sections.append(section)
|
||||||
if request.user.has_perm("reviews.can_manage_%s" % section.section.slug):
|
if request.user.has_perm("reviews.can_manage_%s" % section.section.slug):
|
||||||
|
|
13
vendor/symposion/symposion/schedule/models.py
vendored
13
vendor/symposion/symposion/schedule/models.py
vendored
|
@ -308,19 +308,6 @@ class Presentation(models.Model):
|
||||||
def videos_split(self):
|
def videos_split(self):
|
||||||
return [v.strip() for v in self.videos.split('\n') if v != '']
|
return [v.strip() for v in self.videos.split('\n') if v != '']
|
||||||
|
|
||||||
def youtube_videos(self):
|
|
||||||
return [
|
|
||||||
v.replace('youtu.be', 'www.youtube.com/embed')
|
|
||||||
for v in self.videos_split()
|
|
||||||
if 'youtu.be' in v
|
|
||||||
]
|
|
||||||
|
|
||||||
def other_videos(self):
|
|
||||||
return [
|
|
||||||
v for v in self.videos_split()
|
|
||||||
if 'youtu.be' not in v
|
|
||||||
]
|
|
||||||
|
|
||||||
class Meta:
|
class Meta:
|
||||||
ordering = ["slot"]
|
ordering = ["slot"]
|
||||||
verbose_name = _("presentation")
|
verbose_name = _("presentation")
|
||||||
|
|
2
vendor/symposion/symposion/speakers/forms.py
vendored
2
vendor/symposion/symposion/speakers/forms.py
vendored
|
@ -30,7 +30,7 @@ class SpeakerForm(forms.ModelForm):
|
||||||
def __init__(self, *a, **k):
|
def __init__(self, *a, **k):
|
||||||
super(SpeakerForm, self).__init__(*a, **k)
|
super(SpeakerForm, self).__init__(*a, **k)
|
||||||
self.fields['agreement'].required = True
|
self.fields['agreement'].required = True
|
||||||
self.fields['agreement'].help_text = 'I agree to the <a href="/attend/terms-and-conditions/">Terms and Conditions</a>, and I have read, understood, and agree to act according to the standards set forth in our <a href="/attend/code-of-conduct/">Code of Conduct</a>.<br>I agree to the <a href="/attend/health-and-safety/">Health and Safety Guidelines</a>.'
|
self.fields['agreement'].help_text = 'I agree to the <a href="/attend/terms-and-conditions/">Terms and Conditions</a>, and I have read, understood, and agree to act according to the standards set forth in our <a href="/attend/code-of-conduct/">Code of Conduct</a>.<br>I agree to the <a href="/attend/health-and-safety/">Health and Safety Guidelines</a>, in particular the <strong>requirement to wear a mask</strong> at this event.'
|
||||||
self.fields['biography'].required = True
|
self.fields['biography'].required = True
|
||||||
# self.fields['local_timezone'].required = True
|
# self.fields['local_timezone'].required = True
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue