From 24d2c0d041bfcb0a4a7660688974eb4d01813d3d Mon Sep 17 00:00:00 2001 From: Thomas Steen Rasmussen Date: Sat, 22 Feb 2020 15:47:58 +0100 Subject: [PATCH] add note about the license we decided to use for recordings --- .../migrations/0080_auto_20200222_1547.py | 21 +++++++++++++++++++ src/program/models.py | 3 ++- 2 files changed, 23 insertions(+), 1 deletion(-) create mode 100644 src/program/migrations/0080_auto_20200222_1547.py diff --git a/src/program/migrations/0080_auto_20200222_1547.py b/src/program/migrations/0080_auto_20200222_1547.py new file mode 100644 index 00000000..4742485f --- /dev/null +++ b/src/program/migrations/0080_auto_20200222_1547.py @@ -0,0 +1,21 @@ +# Generated by Django 3.0.3 on 2020-02-22 14:47 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ("program", "0079_eventinstance_uuid"), + ] + + operations = [ + migrations.AlterField( + model_name="eventproposal", + name="allow_video_recording", + field=models.BooleanField( + default=False, + help_text="Uncheck to avoid video recording. Recordings are made available under the CC BY-SA 4.0 license. Uncheck if you can not accept this license.", + ), + ), + ] diff --git a/src/program/models.py b/src/program/models.py index 10f61ae0..b3409ddf 100644 --- a/src/program/models.py +++ b/src/program/models.py @@ -318,7 +318,8 @@ class EventProposal(UserSubmittedModel): ) allow_video_recording = models.BooleanField( - default=False, help_text="Uncheck to avoid video recording." + default=False, + help_text="Uncheck to avoid video recording. Recordings are made available under the CC BY-SA 4.0 license. Uncheck if you can not accept this license.", ) duration = models.IntegerField(