Merge branch 'fix_hobart' into 'master'

Travel assistance to sydney please

See merge request !17
This commit is contained in:
Sachi King 2017-08-01 10:25:42 +00:00
commit 5cc9f81d37
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(
blank=True,
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."),
verbose_name=_("Travel assistance required"),
)