Fixes another thing

This commit is contained in:
Christopher Neugebauer 2017-09-17 20:32:05 -07:00
parent abbe05ee0e
commit 50bc1497e9
2 changed files with 21 additions and 0 deletions

View file

@ -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 <a href='/code-of-conduct'>Code of Conduct</a>."),
),
]

View file

@ -75,6 +75,7 @@ class ConferenceSpeaker(SpeakerBase):
) )
code_of_conduct = models.BooleanField( code_of_conduct = models.BooleanField(
default=False,
help_text=_("I have read and, in the event that my proposal is " help_text=_("I have read and, in the event that my proposal is "
"accepted, agree that I will comply with the " "accepted, agree that I will comply with the "
"<a href='/code-of-conduct'>Code of Conduct</a>."), "<a href='/code-of-conduct'>Code of Conduct</a>."),