From 50bc1497e9718df98966e12315f528b920d859e2 Mon Sep 17 00:00:00 2001 From: Christopher Neugebauer Date: Sun, 17 Sep 2017 20:32:05 -0700 Subject: [PATCH] Fixes another thing --- .../migrations/0005_auto_20170917_2031.py | 20 +++++++++++++++++++ pinaxcon/proposals/models.py | 1 + 2 files changed, 21 insertions(+) create mode 100644 pinaxcon/proposals/migrations/0005_auto_20170917_2031.py diff --git a/pinaxcon/proposals/migrations/0005_auto_20170917_2031.py b/pinaxcon/proposals/migrations/0005_auto_20170917_2031.py new file mode 100644 index 0000000..3ea6dc2 --- /dev/null +++ b/pinaxcon/proposals/migrations/0005_auto_20170917_2031.py @@ -0,0 +1,20 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.11.4 on 2017-09-18 03:31 +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('proposals', '0004_auto_20170917_2028'), + ] + + operations = [ + migrations.AlterField( + model_name='conferencespeaker', + name='code_of_conduct', + field=models.BooleanField(default=False, help_text="I have read and, in the event that my proposal is accepted, agree that I will comply with the Code of Conduct."), + ), + ] diff --git a/pinaxcon/proposals/models.py b/pinaxcon/proposals/models.py index afba826..004360f 100644 --- a/pinaxcon/proposals/models.py +++ b/pinaxcon/proposals/models.py @@ -75,6 +75,7 @@ class ConferenceSpeaker(SpeakerBase): ) code_of_conduct = models.BooleanField( + default=False, help_text=_("I have read and, in the event that my proposal is " "accepted, agree that I will comply with the " "Code of Conduct."),