Skip to content
Snippets Groups Projects
Commit e51ddf43 authored by Fredrik Jonsson's avatar Fredrik Jonsson
Browse files

Rename more_info choice for determinations.

parent eb084024
No related branches found
No related tags found
No related merge requests found
# Generated by Django 2.1.11 on 2019-10-08 12:52
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('determinations', '0007_add_determinationformsettings'),
]
operations = [
migrations.AlterField(
model_name='determination',
name='outcome',
field=models.IntegerField(choices=[(0, 'Dismissed'), (1, 'More information requested'), (2, 'Approved')], default=1, verbose_name='Determination'),
),
]
......@@ -17,7 +17,7 @@ ACCEPTED = 2
DETERMINATION_CHOICES = (
(REJECTED, _('Dismissed')),
(NEEDS_MORE_INFO, _('Needs more info')),
(NEEDS_MORE_INFO, _('More information requested')),
(ACCEPTED, _('Approved')),
)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment