From bd959b3c43e2821edcfdf6c0a0e2bd701f85ab2c Mon Sep 17 00:00:00 2001 From: "J.-S. Caux" <J.S.Caux@uva.nl> Date: Fri, 23 Jun 2017 08:07:30 +0200 Subject: [PATCH] Add Ms in possible titles --- .../migrations/0013_auto_20170623_0806.py | 25 ++++++++++++++++ scipost/constants.py | 1 + scipost/migrations/0056_auto_20170623_0806.py | 30 +++++++++++++++++++ .../migrations/0046_auto_20170623_0806.py | 20 +++++++++++++ 4 files changed, 76 insertions(+) create mode 100644 partners/migrations/0013_auto_20170623_0806.py create mode 100644 scipost/migrations/0056_auto_20170623_0806.py create mode 100644 submissions/migrations/0046_auto_20170623_0806.py diff --git a/partners/migrations/0013_auto_20170623_0806.py b/partners/migrations/0013_auto_20170623_0806.py new file mode 100644 index 000000000..e0e22f9c9 --- /dev/null +++ b/partners/migrations/0013_auto_20170623_0806.py @@ -0,0 +1,25 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.10.3 on 2017-06-23 06:06 +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('partners', '0012_auto_20170612_2006'), + ] + + operations = [ + migrations.AlterField( + model_name='contact', + name='title', + field=models.CharField(choices=[('PR', 'Prof.'), ('DR', 'Dr'), ('MR', 'Mr'), ('MRS', 'Mrs'), ('MS', 'Ms')], max_length=4), + ), + migrations.AlterField( + model_name='prospectivecontact', + name='title', + field=models.CharField(choices=[('PR', 'Prof.'), ('DR', 'Dr'), ('MR', 'Mr'), ('MRS', 'Mrs'), ('MS', 'Ms')], max_length=4), + ), + ] diff --git a/scipost/constants.py b/scipost/constants.py index aa19e9b47..0e177d645 100644 --- a/scipost/constants.py +++ b/scipost/constants.py @@ -148,6 +148,7 @@ TITLE_CHOICES = ( ('DR', 'Dr'), ('MR', 'Mr'), ('MRS', 'Mrs'), + ('MS', 'Ms'), ) INVITATION_EDITORIAL_FELLOW = 'F' diff --git a/scipost/migrations/0056_auto_20170623_0806.py b/scipost/migrations/0056_auto_20170623_0806.py new file mode 100644 index 000000000..ec3170909 --- /dev/null +++ b/scipost/migrations/0056_auto_20170623_0806.py @@ -0,0 +1,30 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.10.3 on 2017-06-23 06:06 +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('scipost', '0055_auto_20170519_0937'), + ] + + operations = [ + migrations.AlterField( + model_name='contributor', + name='title', + field=models.CharField(choices=[('PR', 'Prof.'), ('DR', 'Dr'), ('MR', 'Mr'), ('MRS', 'Mrs'), ('MS', 'Ms')], max_length=4), + ), + migrations.AlterField( + model_name='draftinvitation', + name='title', + field=models.CharField(choices=[('PR', 'Prof.'), ('DR', 'Dr'), ('MR', 'Mr'), ('MRS', 'Mrs'), ('MS', 'Ms')], max_length=4), + ), + migrations.AlterField( + model_name='registrationinvitation', + name='title', + field=models.CharField(choices=[('PR', 'Prof.'), ('DR', 'Dr'), ('MR', 'Mr'), ('MRS', 'Mrs'), ('MS', 'Ms')], max_length=4), + ), + ] diff --git a/submissions/migrations/0046_auto_20170623_0806.py b/submissions/migrations/0046_auto_20170623_0806.py new file mode 100644 index 000000000..a0249efe9 --- /dev/null +++ b/submissions/migrations/0046_auto_20170623_0806.py @@ -0,0 +1,20 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.10.3 on 2017-06-23 06:06 +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('submissions', '0045_auto_20170608_1710'), + ] + + operations = [ + migrations.AlterField( + model_name='refereeinvitation', + name='title', + field=models.CharField(choices=[('PR', 'Prof.'), ('DR', 'Dr'), ('MR', 'Mr'), ('MRS', 'Mrs'), ('MS', 'Ms')], max_length=4), + ), + ] -- GitLab