bornhack-website/src/program/migrations/0084_auto_20200229_1801.py
Thomas Steen Rasmussen bf7578a833
Send emails when proposals are accepted/rejected, and when eventinstances are created/updated (#466)
* fixup labels and help_text for the email field

* add email and published columns to speaker proposal table, add published column to event proposal table

* send email to user when a speaker or eventproposal is accepted or rejected. Send email to submitter and all speakers when an eventinstance is created, or when the time is updated (event is rescheduled). Fix a few other small things while here.
2020-03-05 12:23:42 +01:00

31 lines
961 B
Python

# Generated by Django 3.0.3 on 2020-02-29 17:01
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("program", "0083_auto_20200226_1853"),
]
operations = [
migrations.AlterField(
model_name="eventproposal",
name="allow_video_recording",
field=models.BooleanField(
default=False,
help_text="Recordings are made available under the <b>CC BY-SA 4.0</b> license. Uncheck if you do not want the event recorded, or if you cannot accept the license.",
),
),
migrations.AlterField(
model_name="speakerproposal",
name="email",
field=models.EmailField(
blank=True,
help_text="The email of the speaker/artist/host. Defaults to the logged in users email if empty.",
max_length=150,
),
),
]