Travel assistance to sydney please

* Tweaks help_text to indicate that travel assistance is to Sydney
* Includes the required migration

This migration doesn't change the DB so it's safe to apply with the system live.
This commit is contained in:
James Polley 2017-07-31 22:46:58 +10:00
parent 56dc089d59
commit bba5649360
2 changed files with 21 additions and 1 deletions

View file

@ -0,0 +1,20 @@
# -*- coding: utf-8 -*-
# Generated by Django 1.11.3 on 2017-07-31 12:32
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('symposion_speakers', '0003_auto_20170702_1606'),
]
operations = [
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 Sydney to present your proposed sessions.', verbose_name='Travel assistance required'),
),
]

View file

@ -66,7 +66,7 @@ class Speaker(models.Model):
travel_assistance = models.BooleanField( travel_assistance = models.BooleanField(
blank=True, blank=True,
default=False, default=False,
help_text=_("Check this box if you require assistance to travel to Hobart to " help_text=_("Check this box if you require assistance to travel to Sydney to "
"present your proposed sessions."), "present your proposed sessions."),
verbose_name=_("Travel assistance required"), verbose_name=_("Travel assistance required"),
) )