Changeset - 567b88f24032
[Not reviewed]
0 0 1
James Polley - 6 years ago 2018-07-01 03:52:25
jp@jamezpolley.com
Add a migration for changes to speaker form
1 file changed with 25 insertions and 0 deletions:
0 comments (0 inline, 0 general)
vendor/symposion/speakers/migrations/0006_auto_20180701_1347.py
Show inline comments
 
new file 100644
 
# -*- coding: utf-8 -*-
 
# Generated by Django 1.11.13 on 2018-07-01 03:47
 
from __future__ import unicode_literals
 

	
 
from django.db import migrations, models
 

	
 

	
 
class Migration(migrations.Migration):
 

	
 
    dependencies = [
 
        ('symposion_speakers', '0005_merge_20170917_1248'),
 
    ]
 

	
 
    operations = [
 
        migrations.AlterField(
 
            model_name='speaker',
 
            name='agreement',
 
            field=models.BooleanField(default=False, help_text='I agree to the <a href="/attend/terms-and-conditions"> terms and conditions of attendance</a>, and I have read, understood, and agree to act according to the standards set forth in our <a href="/attend/code-of-conduct">Code of Conduct</a>.'),
 
        ),
 
        migrations.AlterField(
 
            model_name='speaker',
 
            name='travel_assistance',
 
            field=models.BooleanField(default=False, help_text='Check this box if you require assistance to travel to Christchurch to present your proposed sessions.', verbose_name='Travel assistance required'),
 
        ),
 
    ]
0 comments (0 inline, 0 general)