Files @ d3a8b39a7b01
Branch filter:

Location: symposion_app/pinaxcon/proposals/migrations/0004_auto_20160621_0357.py

Christopher Neugebauer
Adds 2em to the bottom of the illustration div in compact panels (#26)
# -*- coding: utf-8 -*-
# Generated by Django 1.9.7 on 2016-06-21 03:57
from __future__ import unicode_literals

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('proposals', '0003_merge'),
    ]

    operations = [
        migrations.RemoveField(
            model_name='tutorialproposal',
            name='audience_level',
        ),
        migrations.AddField(
            model_name='tutorialproposal',
            name='materials_release',
            field=models.BooleanField(default=True, help_text=b"I allow Linux Australia to release any other material (such as slides) from presentations covered by this proposal, under the <a href='https://creativecommons.org/licenses/by-sa/3.0/au/deed.en'> Creative Commons Attribution-Share Alike Australia 3.0 Licence</a>"),
        ),
        migrations.AddField(
            model_name='tutorialproposal',
            name='target_audience',
            field=models.IntegerField(choices=[(1, b'User'), (2, b'Business'), (3, b'Community'), (4, b'Developer')], default=0),
            preserve_default=False,
        ),
        migrations.AlterField(
            model_name='tutorialproposal',
            name='recording_release',
            field=models.BooleanField(default=True, help_text=b"I allow Linux Australia to release any recordings of presentations covered by this proposal, under the <a href='https://creativecommons.org/licenses/by-sa/3.0/au/deed.en'> Creative Commons Attribution-Share Alike Australia 3.0 Licence</a>"),
        ),
    ]