Files @ cabad1c7d5f1
Branch filter:

Location: symposion_app/pinaxcon/registrasion/migrations/0004_auto_20160923_0133.py

James Polley
Change "Apply voucher" button into a link

I can't find the form that should be displayed here, so the simplest
thing I can do at 11pm is to make this a link. That's unsatisfying but
hopefully works.
# -*- coding: utf-8 -*-
# Generated by Django 1.9.7 on 2016-09-23 01:33
from __future__ import unicode_literals

from django.db import migrations
import django_countries.fields


class Migration(migrations.Migration):

    dependencies = [
        ('pinaxcon_registrasion', '0003_auto_20160922_2337'),
    ]

    operations = [
        migrations.AlterField(
            model_name='attendeeprofile',
            name='country',
            field=django_countries.fields.CountryField(default=b'AU', max_length=2),
        ),
    ]