# -*- coding: utf-8 -*-
from __future__ import unicode_literals

from django.db import models, migrations


class Migration(migrations.Migration):

    dependencies = [
        ('exam_application', '0014_auto_20160506_1426'),
    ]

    operations = [
        migrations.AddField(
            model_name='examapplication',
            name='referees_provided',
            field=models.BooleanField(default=False, verbose_name=b'I have provided the names of at least two referees'),
        ),
        migrations.AlterField(
            model_name='examapplication',
            name='copy_degree_certificate',
            field=models.BooleanField(default=False, verbose_name=b'A copy of my degree certificate is included'),
        ),
        migrations.AlterField(
            model_name='examapplication',
            name='currently_employed',
            field=models.BooleanField(default=False, verbose_name=b'I am currently employed in the UK or Ireland to perform vascular diagnostic investigations'),
        ),
        migrations.AlterField(
            model_name='examapplication',
            name='duplex_scans_complered',
            field=models.BooleanField(default=False, verbose_name=b'I have performed at least 600 scans in each of the 3 core duplex modalities (including a minimum number of compulsory elements) and 200 ABPIs and will ensure supporting evidence is available to the examiners.'),
        ),
        migrations.AlterField(
            model_name='examapplication',
            name='exam_results_letters',
            field=models.BooleanField(default=False, verbose_name=b'Copies of my exam results letters are included.'),
        ),
        migrations.AlterField(
            model_name='examapplication',
            name='ordinary_member',
            field=models.BooleanField(default=False, verbose_name=b'I am an ordinary member of the SVT'),
        ),
        migrations.AlterField(
            model_name='examapplication',
            name='scans_completed',
            field=models.BooleanField(default=False, verbose_name=b'I have carried out at least 25 scans from each of core modalities 1-3 in the 3 months prior to applying to sit the practical exam and will ensure local protocols and all of these reports are available to the examiners on the day.'),
        ),
        migrations.AlterField(
            model_name='examapplication',
            name='six_month_employed',
            field=models.BooleanField(default=False, verbose_name=b'I have been employed in the UK or Ireland to perform vascular diagnostic investigations for at least 6 months.'),
        ),
        migrations.AlterField(
            model_name='examapplication',
            name='suitable_avs_assessor',
            field=models.BooleanField(default=False, verbose_name=b'I have nominated a suitable AVS internal assessor'),
        ),
        migrations.AlterField(
            model_name='examapplication',
            name='theory_exams_passed',
            field=models.BooleanField(default=False, verbose_name=b'I have passed both theory exams in the last 5 years.'),
        ),
        migrations.AlterField(
            model_name='examapplication',
            name='understand_retake',
            field=models.BooleanField(default=False, verbose_name=b'I understand if I fail the exam I will not be able to apply to retake it for at least 6months.'),
        ),
        migrations.AlterField(
            model_name='examapplication',
            name='vascular_scanning_experience',
            field=models.BooleanField(default=False, verbose_name=b'I have at least 3 years full-time diagnostic vascular scanning experience (or part-time equivalent) in each of the core modalities'),
        ),
    ]
