Changeset - e3d32a286f5f
[Not reviewed]
Merge
0 1 1
Christopher Neugebauer - 6 years ago 2017-09-18 03:32:19
chrisjrn@gmail.com
Merge branch 'master' into prod
2 files changed with 21 insertions and 0 deletions:
0 comments (0 inline, 0 general)
pinaxcon/proposals/migrations/0005_auto_20170917_2031.py
Show inline comments
 
new file 100644
 
# -*- 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>."),
 
        ),
 
    ]
pinaxcon/proposals/models.py
Show inline comments
...
 
@@ -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 "
 
                    "<a href='/code-of-conduct'>Code of Conduct</a>."),
0 comments (0 inline, 0 general)