bornhack-website/src/program/migrations/0078_auto_20200214_2100.py
Thomas Steen Rasmussen 33383e6559
Event feedback (#451)
* Event feedback functionality and related commits:

* blackness and isort and flake8 - this branch does not have pre-commit so I forgot :/

* finish backoffice management of eventfeedback

* add username to eventfeedback detail panel when viewed in backoffice

* Add feedback url to elm schedule. Fix access when user is anonymous. Remove print statement.

* one prefetch_related call to rule them all

Co-authored-by: Víðir Valberg Guðmundsson <valberg@orn.li>
2020-02-22 14:50:09 +01:00

28 lines
746 B
Python

# Generated by Django 3.0.3 on 2020-02-14 20:00
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("program", "0077_auto_20200214_0246"),
]
operations = [
migrations.AlterField(
model_name="eventfeedback",
name="approved",
field=models.NullBooleanField(
help_text="Approve feedback? It will not be visible to the Event owner before it is approved."
),
),
migrations.AlterField(
model_name="eventfeedback",
name="comment",
field=models.TextField(
blank=True, help_text="Any other comments or feedback?"
),
),
]