Make provided laptop default=True.

This commit is contained in:
Víðir Valberg Guðmundsson 2019-08-01 09:34:00 +02:00
parent b89f09105c
commit 08d0dd7161
2 changed files with 19 additions and 1 deletions

View File

@ -0,0 +1,18 @@
# Generated by Django 2.2.3 on 2019-08-01 07:33
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('program', '0073_eventproposal_use_provided_speaker_laptop'),
]
operations = [
migrations.AlterField(
model_name='eventproposal',
name='use_provided_speaker_laptop',
field=models.BooleanField(default=True, help_text='Will you be using the provided speaker laptop?'),
),
]

View File

@ -341,7 +341,7 @@ class EventProposal(UserSubmittedModel):
)
use_provided_speaker_laptop = models.BooleanField(
help_text="Will you be using the provided speaker laptop?", default=False
help_text="Will you be using the provided speaker laptop?", default=True
)
@property