Files @ 71805cc66e00
Branch filter:

Location: symposion_app/vendor/symposion/speakers/migrations/0010_speaker_local_timezone.py

bsturmfels
Add additional account app templates

This works around use block "body" when we need block "content".
# Generated by Django 2.2.17 on 2021-07-05 09:18

from django.db import migrations
import timezone_field.fields


class Migration(migrations.Migration):

    dependencies = [
        ('symposion_speakers', '0009_auto_20201123_2256'),
    ]

    operations = [
        migrations.AddField(
            model_name='speaker',
            name='local_timezone',
            field=timezone_field.fields.TimeZoneField(blank=True, help_text='Your local timezone, preferably the one you will use to present from. The conference organisers will use this to assist with scheduling talks.', verbose_name='Local Timezone'),
        ),
    ]