Files @ 71805cc66e00
Branch filter:

Location: symposion_app/vendor/symposion/proposals/migrations/0003_auto_20170702_2250.py

bsturmfels
Add additional account app templates

This works around use block "body" when we need block "content".
# -*- coding: utf-8 -*-
# Generated by Django 1.11.3 on 2017-07-02 12:50
from __future__ import unicode_literals

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('symposion_proposals', '0002_auto_20170702_2233'),
    ]

    operations = [
        migrations.AlterField(
            model_name='proposalbase',
            name='abstract',
            field=models.TextField(help_text='This will appear in the conference programme. Up to about 500 words. This field is rendered with the monospace font <a tabindex="-1" href="https://sourcefoundry.org/hack/">Hack</a> with whitespace preserved', verbose_name='Abstract'),
        ),
        migrations.AlterField(
            model_name='proposalbase',
            name='private_abstract',
            field=models.TextField(help_text='This will only be shown to organisers and reviewers. You should provide any details about your proposal that you don\'t want to be public here. This field is rendered with the monospace font <a tabindex="-1" href="https://sourcefoundry.org/hack/">Hack</a> with whitespace preserved', verbose_name='Private Abstract'),
        ),
        migrations.AlterField(
            model_name='proposalbase',
            name='technical_requirements',
            field=models.TextField(blank=True, help_text='Speakers will be provided with: Internet access, power, projector, audio.  If you require anything in addition, please list your technical requirements here.  Such as: a static IP address, A/V equipment or will be demonstrating security-related techniques on the conference network. This field is rendered with the monospace font <a tabindex="-1" href="https://sourcefoundry.org/hack/">Hack</a> with whitespace preserved', verbose_name='Special Requirements'),
        ),
    ]