Add models/forms for additional tracks
This commit is contained in:
		
							parent
							
								
									8173497769
								
							
						
					
					
						commit
						827a482d32
					
				
					 6 changed files with 497 additions and 4 deletions
				
			
		|  | @ -21,8 +21,21 @@ class CategoryAdmin(admin.ModelAdmin): | ||||||
| 
 | 
 | ||||||
| 
 | 
 | ||||||
| models_to_register = [ | models_to_register = [ | ||||||
|     models.TalkProposal, |     models.CopyleftComplianceProposal, | ||||||
|     models.TutorialProposal, |     models.MemberProjectProposal, | ||||||
|  |     models.ContainerDaysProposal, | ||||||
|  |     models.SustainableOpenSourceBusinessProposal, | ||||||
|  |     models.DiversityEquityInclusionProposal, | ||||||
|  |     models.FOSSAtPlayProposal, | ||||||
|  |     models.OpenSourcAIDataProposal, | ||||||
|  |     models.OpenWorkProposal, | ||||||
|  |     models.CommunityProposal, | ||||||
|  |     models.BSDUnixProposal, | ||||||
|  |     models.XMPPProposal, | ||||||
|  |     models.ScienceOfCommunityProposal, | ||||||
|  |     models.AArch64ARM64Proposal, | ||||||
|  |     models.FOSSForEducationProposal, | ||||||
|  |     models.FOSSInDailyLifeProposal, | ||||||
| ] | ] | ||||||
| 
 | 
 | ||||||
| for model in models_to_register: | for model in models_to_register: | ||||||
|  |  | ||||||
|  | @ -13,11 +13,11 @@ DEFAULT_FIELDS =  [ | ||||||
|     "experience_level", |     "experience_level", | ||||||
|     "abstract", |     "abstract", | ||||||
|     "private_abstract", |     "private_abstract", | ||||||
|     "content_warning", |     # "content_warning", | ||||||
|     "technical_requirements", |     "technical_requirements", | ||||||
|     # "project", |     # "project", | ||||||
|     # "project_url", |     # "project_url", | ||||||
|     "video_url", |     # "video_url", | ||||||
|     "require_approval", |     "require_approval", | ||||||
|     "recording_release", |     "recording_release", | ||||||
|     "materials_release", |     "materials_release", | ||||||
|  | @ -73,3 +73,81 @@ class MemberProjectProposalForm(MiniconfProposalForm): | ||||||
|     class Meta: |     class Meta: | ||||||
|         model = models.MemberProjectProposal |         model = models.MemberProjectProposal | ||||||
|         fields = TALK_FORMAT_FIELDS |         fields = TALK_FORMAT_FIELDS | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
|  | class ContainerDaysProposalForm(MiniconfProposalForm): | ||||||
|  |     class Meta: | ||||||
|  |         model = models.ContainerDaysProposal | ||||||
|  |         fields = TALK_FORMAT_FIELDS | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
|  | class SustainableOpenSourceBusinessProposalForm(MiniconfProposalForm): | ||||||
|  |     class Meta: | ||||||
|  |         model = models.SustainableOpenSourceBusinessProposal | ||||||
|  |         fields = TALK_FORMAT_FIELDS | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
|  | class DiversityEquityInclusionProposalForm(MiniconfProposalForm): | ||||||
|  |     class Meta: | ||||||
|  |         model = models.DiversityEquityInclusionProposal | ||||||
|  |         fields = TALK_FORMAT_FIELDS | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
|  | class FOSSAtPlayProposalForm(MiniconfProposalForm): | ||||||
|  |     class Meta: | ||||||
|  |         model = models.FOSSAtPlayProposal | ||||||
|  |         fields = TALK_FORMAT_FIELDS | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
|  | class OpenSourcAIDataProposalForm(MiniconfProposalForm): | ||||||
|  |     class Meta: | ||||||
|  |         model = models.OpenSourcAIDataProposal | ||||||
|  |         fields = TALK_FORMAT_FIELDS | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
|  | class OpenWorkProposalForm(MiniconfProposalForm): | ||||||
|  |     class Meta: | ||||||
|  |         model = models.OpenWorkProposal | ||||||
|  |         fields = TALK_FORMAT_FIELDS | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
|  | class CommunityProposalForm(MiniconfProposalForm): | ||||||
|  |     class Meta: | ||||||
|  |         model = models.CommunityProposal | ||||||
|  |         fields = TALK_FORMAT_FIELDS | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
|  | class BSDUnixProposalForm(MiniconfProposalForm): | ||||||
|  |     class Meta: | ||||||
|  |         model = models.BSDUnixProposal | ||||||
|  |         fields = TALK_FORMAT_FIELDS | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
|  | class XMPPProposalForm(MiniconfProposalForm): | ||||||
|  |     class Meta: | ||||||
|  |         model = models.XMPPProposal | ||||||
|  |         fields = TALK_FORMAT_FIELDS | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
|  | class ScienceOfCommunityProposalForm(MiniconfProposalForm): | ||||||
|  |     class Meta: | ||||||
|  |         model = models.ScienceOfCommunityProposal | ||||||
|  |         fields = TALK_FORMAT_FIELDS | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
|  | class AArch64ARM64ProposalForm(MiniconfProposalForm): | ||||||
|  |     class Meta: | ||||||
|  |         model = models.AArch64ARM64Proposal | ||||||
|  |         fields = TALK_FORMAT_FIELDS | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
|  | class FOSSForEducationProposalForm(MiniconfProposalForm): | ||||||
|  |     class Meta: | ||||||
|  |         model = models.FOSSForEducationProposal | ||||||
|  |         fields = TALK_FORMAT_FIELDS | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
|  | class FOSSInDailyLifeProposalForm(MiniconfProposalForm): | ||||||
|  |     class Meta: | ||||||
|  |         model = models.FOSSInDailyLifeProposal | ||||||
|  |         fields = TALK_FORMAT_FIELDS | ||||||
|  |  | ||||||
							
								
								
									
										285
									
								
								pinaxcon/proposals/migrations/0007_auto_20230420_0043.py
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										285
									
								
								pinaxcon/proposals/migrations/0007_auto_20230420_0043.py
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,285 @@ | ||||||
|  | # Generated by Django 2.2.28 on 2023-04-20 07:43 | ||||||
|  | 
 | ||||||
|  | from django.db import migrations, models | ||||||
|  | import django.db.models.deletion | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
|  | class Migration(migrations.Migration): | ||||||
|  | 
 | ||||||
|  |     dependencies = [ | ||||||
|  |         ('symposion_proposals', '0003_auto_20170702_2250'), | ||||||
|  |         ('proposals', '0006_auto_20230414_2356'), | ||||||
|  |     ] | ||||||
|  | 
 | ||||||
|  |     operations = [ | ||||||
|  |         migrations.CreateModel( | ||||||
|  |             name='AArch64ARM64Proposal', | ||||||
|  |             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/3.0/au/deed.en'> Creative Commons Attribution-Share Alike Australia 3.0 Licence</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?')), | ||||||
|  |                 ('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=[(2, 'Short Presentation (15 or 20 min)'), (3, 'Long Presentation (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': 'AArch64/ARM64 Servers and Open Source- The Who, What, Why, and How proposal', | ||||||
|  |             }, | ||||||
|  |             bases=('symposion_proposals.proposalbase',), | ||||||
|  |         ), | ||||||
|  |         migrations.CreateModel( | ||||||
|  |             name='BSDUnixProposal', | ||||||
|  |             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/3.0/au/deed.en'> Creative Commons Attribution-Share Alike Australia 3.0 Licence</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?')), | ||||||
|  |                 ('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=[(2, 'Short Presentation (15 or 20 min)'), (3, 'Long Presentation (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': 'BSD Unix proposal', | ||||||
|  |             }, | ||||||
|  |             bases=('symposion_proposals.proposalbase',), | ||||||
|  |         ), | ||||||
|  |         migrations.CreateModel( | ||||||
|  |             name='CommunityProposal', | ||||||
|  |             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/3.0/au/deed.en'> Creative Commons Attribution-Share Alike Australia 3.0 Licence</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?')), | ||||||
|  |                 ('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=[(2, 'Short Presentation (15 or 20 min)'), (3, 'Long Presentation (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': 'Community: Open Source in Practice proposal', | ||||||
|  |             }, | ||||||
|  |             bases=('symposion_proposals.proposalbase',), | ||||||
|  |         ), | ||||||
|  |         migrations.CreateModel( | ||||||
|  |             name='ContainerDaysProposal', | ||||||
|  |             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/3.0/au/deed.en'> Creative Commons Attribution-Share Alike Australia 3.0 Licence</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?')), | ||||||
|  |                 ('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=[(2, 'Short Presentation (15 or 20 min)'), (3, 'Long Presentation (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': 'Container Days proposal', | ||||||
|  |             }, | ||||||
|  |             bases=('symposion_proposals.proposalbase',), | ||||||
|  |         ), | ||||||
|  |         migrations.CreateModel( | ||||||
|  |             name='DiversityEquityInclusionProposal', | ||||||
|  |             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/3.0/au/deed.en'> Creative Commons Attribution-Share Alike Australia 3.0 Licence</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?')), | ||||||
|  |                 ('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=[(2, 'Short Presentation (15 or 20 min)'), (3, 'Long Presentation (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': 'Diversity Equity and Inclusion and FOSS proposal', | ||||||
|  |             }, | ||||||
|  |             bases=('symposion_proposals.proposalbase',), | ||||||
|  |         ), | ||||||
|  |         migrations.CreateModel( | ||||||
|  |             name='FOSSAtPlayProposal', | ||||||
|  |             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/3.0/au/deed.en'> Creative Commons Attribution-Share Alike Australia 3.0 Licence</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?')), | ||||||
|  |                 ('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=[(2, 'Short Presentation (15 or 20 min)'), (3, 'Long Presentation (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': 'FOSS at Play: Games, creative development, and open technology proposal', | ||||||
|  |             }, | ||||||
|  |             bases=('symposion_proposals.proposalbase',), | ||||||
|  |         ), | ||||||
|  |         migrations.CreateModel( | ||||||
|  |             name='FOSSForEducationProposal', | ||||||
|  |             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/3.0/au/deed.en'> Creative Commons Attribution-Share Alike Australia 3.0 Licence</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?')), | ||||||
|  |                 ('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=[(2, 'Short Presentation (15 or 20 min)'), (3, 'Long Presentation (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': 'FOSS For Education proposal', | ||||||
|  |             }, | ||||||
|  |             bases=('symposion_proposals.proposalbase',), | ||||||
|  |         ), | ||||||
|  |         migrations.CreateModel( | ||||||
|  |             name='FOSSInDailyLifeProposal', | ||||||
|  |             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/3.0/au/deed.en'> Creative Commons Attribution-Share Alike Australia 3.0 Licence</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?')), | ||||||
|  |                 ('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=[(2, 'Short Presentation (15 or 20 min)'), (3, 'Long Presentation (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': 'FOSS in Daily Life proposal', | ||||||
|  |             }, | ||||||
|  |             bases=('symposion_proposals.proposalbase',), | ||||||
|  |         ), | ||||||
|  |         migrations.CreateModel( | ||||||
|  |             name='OpenSourcAIDataProposal', | ||||||
|  |             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/3.0/au/deed.en'> Creative Commons Attribution-Share Alike Australia 3.0 Licence</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?')), | ||||||
|  |                 ('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=[(2, 'Short Presentation (15 or 20 min)'), (3, 'Long Presentation (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': 'Open Source AI + Data proposal', | ||||||
|  |             }, | ||||||
|  |             bases=('symposion_proposals.proposalbase',), | ||||||
|  |         ), | ||||||
|  |         migrations.CreateModel( | ||||||
|  |             name='OpenWorkProposal', | ||||||
|  |             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/3.0/au/deed.en'> Creative Commons Attribution-Share Alike Australia 3.0 Licence</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?')), | ||||||
|  |                 ('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=[(2, 'Short Presentation (15 or 20 min)'), (3, 'Long Presentation (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': 'Issues in Open Work; Common Challenges and Best Practices in the Open Source Industry, Open Scholarship, and Government proposal', | ||||||
|  |             }, | ||||||
|  |             bases=('symposion_proposals.proposalbase',), | ||||||
|  |         ), | ||||||
|  |         migrations.CreateModel( | ||||||
|  |             name='ScienceOfCommunityProposal', | ||||||
|  |             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/3.0/au/deed.en'> Creative Commons Attribution-Share Alike Australia 3.0 Licence</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?')), | ||||||
|  |                 ('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=[(2, 'Short Presentation (15 or 20 min)'), (3, 'Long Presentation (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': 'Science of Community proposal', | ||||||
|  |             }, | ||||||
|  |             bases=('symposion_proposals.proposalbase',), | ||||||
|  |         ), | ||||||
|  |         migrations.CreateModel( | ||||||
|  |             name='SustainableOpenSourceBusinessProposal', | ||||||
|  |             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/3.0/au/deed.en'> Creative Commons Attribution-Share Alike Australia 3.0 Licence</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?')), | ||||||
|  |                 ('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=[(2, 'Short Presentation (15 or 20 min)'), (3, 'Long Presentation (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': 'Sustainable Open Source Business/ Software Worker Coops proposal', | ||||||
|  |             }, | ||||||
|  |             bases=('symposion_proposals.proposalbase',), | ||||||
|  |         ), | ||||||
|  |         migrations.CreateModel( | ||||||
|  |             name='XMPPProposal', | ||||||
|  |             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/3.0/au/deed.en'> Creative Commons Attribution-Share Alike Australia 3.0 Licence</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?')), | ||||||
|  |                 ('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=[(2, 'Short Presentation (15 or 20 min)'), (3, 'Long Presentation (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': 'XMPP proposal', | ||||||
|  |             }, | ||||||
|  |             bases=('symposion_proposals.proposalbase',), | ||||||
|  |         ), | ||||||
|  |         migrations.AlterField( | ||||||
|  |             model_name='copyleftcomplianceproposal', | ||||||
|  |             name='talk_format', | ||||||
|  |             field=models.IntegerField(choices=[(2, 'Short Presentation (15 or 20 min)'), (3, 'Long Presentation (45 min)')], default=3, help_text='Please indicate your preferred talk length in the private abstract field below.'), | ||||||
|  |         ), | ||||||
|  |         migrations.AlterField( | ||||||
|  |             model_name='memberprojectproposal', | ||||||
|  |             name='talk_format', | ||||||
|  |             field=models.IntegerField(choices=[(2, 'Short Presentation (15 or 20 min)'), (3, 'Long Presentation (45 min)')], default=3, help_text='Please indicate your preferred talk length in the private abstract field below.'), | ||||||
|  |         ), | ||||||
|  |     ] | ||||||
|  | @ -166,3 +166,68 @@ class CopyleftComplianceProposal(MiniconfSessionProposal): | ||||||
| class MemberProjectProposal(MiniconfSessionProposal): | class MemberProjectProposal(MiniconfSessionProposal): | ||||||
|     class Meta: |     class Meta: | ||||||
|         verbose_name = "SFC Member Project talk proposal" |         verbose_name = "SFC Member Project talk proposal" | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
|  | class ContainerDaysProposal(MiniconfSessionProposal): | ||||||
|  |     class Meta: | ||||||
|  |         verbose_name = "Container Days proposal" | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
|  | class SustainableOpenSourceBusinessProposal(MiniconfSessionProposal): | ||||||
|  |     class Meta: | ||||||
|  |         verbose_name = "Sustainable Open Source Business/ Software Worker Coops proposal" | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
|  | class DiversityEquityInclusionProposal(MiniconfSessionProposal): | ||||||
|  |     class Meta: | ||||||
|  |         verbose_name = "Diversity Equity and Inclusion and FOSS proposal" | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
|  | class FOSSAtPlayProposal(MiniconfSessionProposal): | ||||||
|  |     class Meta: | ||||||
|  |         verbose_name = "FOSS at Play: Games, creative development, and open technology proposal" | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
|  | class OpenSourcAIDataProposal(MiniconfSessionProposal): | ||||||
|  |     class Meta: | ||||||
|  |         verbose_name = "Open Source AI + Data proposal" | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
|  | class OpenWorkProposal(MiniconfSessionProposal): | ||||||
|  |     class Meta: | ||||||
|  |         verbose_name = "Issues in Open Work; Common Challenges and Best Practices in the Open Source Industry, Open Scholarship, and Government proposal" | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
|  | class CommunityProposal(MiniconfSessionProposal): | ||||||
|  |     class Meta: | ||||||
|  |         verbose_name = "Community: Open Source in Practice proposal" | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
|  | class BSDUnixProposal(MiniconfSessionProposal): | ||||||
|  |     class Meta: | ||||||
|  |         verbose_name = "BSD Unix proposal" | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
|  | class XMPPProposal(MiniconfSessionProposal): | ||||||
|  |     class Meta: | ||||||
|  |         verbose_name = "XMPP proposal" | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
|  | class ScienceOfCommunityProposal(MiniconfSessionProposal): | ||||||
|  |     class Meta: | ||||||
|  |         verbose_name = "Science of Community proposal" | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
|  | class AArch64ARM64Proposal(MiniconfSessionProposal): | ||||||
|  |     class Meta: | ||||||
|  |         verbose_name = "AArch64/ARM64 Servers and Open Source- The Who, What, Why, and How proposal" | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
|  | class FOSSForEducationProposal(MiniconfSessionProposal): | ||||||
|  |     class Meta: | ||||||
|  |         verbose_name = "FOSS For Education proposal" | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
|  | class FOSSInDailyLifeProposal(MiniconfSessionProposal): | ||||||
|  |     class Meta: | ||||||
|  |         verbose_name = "FOSS in Daily Life proposal" | ||||||
|  |  | ||||||
							
								
								
									
										34
									
								
								pinaxcon/registrasion/migrations/0017_auto_20230420_0018.py
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										34
									
								
								pinaxcon/registrasion/migrations/0017_auto_20230420_0018.py
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,34 @@ | ||||||
|  | # Generated by Django 2.2.28 on 2023-04-20 07:18 | ||||||
|  | 
 | ||||||
|  | from django.db import migrations, models | ||||||
|  | import django_countries.fields | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
|  | class Migration(migrations.Migration): | ||||||
|  | 
 | ||||||
|  |     dependencies = [ | ||||||
|  |         ('pinaxcon_registrasion', '0016_auto_20230414_2356'), | ||||||
|  |     ] | ||||||
|  | 
 | ||||||
|  |     operations = [ | ||||||
|  |         migrations.AlterField( | ||||||
|  |             model_name='attendeeprofile', | ||||||
|  |             name='country', | ||||||
|  |             field=django_countries.fields.CountryField(default='US', max_length=2, verbose_name='Country'), | ||||||
|  |         ), | ||||||
|  |         migrations.AlterField( | ||||||
|  |             model_name='attendeeprofile', | ||||||
|  |             name='linux_australia', | ||||||
|  |             field=models.BooleanField(blank=True, default=False, help_text="Select this field to register for free <a href='http://www.linux.org.au/'>Linux Australia</a> membership.", verbose_name='Linux Australia membership'), | ||||||
|  |         ), | ||||||
|  |         migrations.AlterField( | ||||||
|  |             model_name='attendeeprofile', | ||||||
|  |             name='of_legal_age', | ||||||
|  |             field=models.BooleanField(blank=True, help_text='Being under 18 will not stop you from attending the conference.', verbose_name='Are you over 18?'), | ||||||
|  |         ), | ||||||
|  |         migrations.AlterField( | ||||||
|  |             model_name='attendeeprofile', | ||||||
|  |             name='state', | ||||||
|  |             field=models.CharField(blank=True, max_length=256, verbose_name='State/Territory/Province'), | ||||||
|  |         ), | ||||||
|  |     ] | ||||||
							
								
								
									
										18
									
								
								vendor/symposion/speakers/migrations/0012_auto_20230420_0018.py
									
										
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										18
									
								
								vendor/symposion/speakers/migrations/0012_auto_20230420_0018.py
									
										
									
									
										vendored
									
									
										Normal file
									
								
							|  | @ -0,0 +1,18 @@ | ||||||
|  | # Generated by Django 2.2.28 on 2023-04-20 07:18 | ||||||
|  | 
 | ||||||
|  | from django.db import migrations, models | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
|  | class Migration(migrations.Migration): | ||||||
|  | 
 | ||||||
|  |     dependencies = [ | ||||||
|  |         ('symposion_speakers', '0011_auto_20221208_0102'), | ||||||
|  |     ] | ||||||
|  | 
 | ||||||
|  |     operations = [ | ||||||
|  |         migrations.AlterField( | ||||||
|  |             model_name='speaker', | ||||||
|  |             name='accessibility', | ||||||
|  |             field=models.TextField(blank=True, help_text='Let us know how we can help you during the conference, for example your accessibility requirements, if you require a Visa invitation letter, whether you require access to child minding facilities or anything else you think we should know about.', verbose_name='Other requirements'), | ||||||
|  |         ), | ||||||
|  |     ] | ||||||
		Loading…
	
	Add table
		
		Reference in a new issue