Skip to content

Commit c0d924c

Browse files
committed
Modified the name and help text of the Person.plain field, to make the intended use clearer (to avoid cases of incorrect usage seen recently).
- Legacy-Id: 18649
1 parent 552c0c9 commit c0d924c

2 files changed

Lines changed: 24 additions & 1 deletion

File tree

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# Generated by Django 2.2.16 on 2020-10-28 09:02
2+
3+
from django.db import migrations, models
4+
5+
6+
class Migration(migrations.Migration):
7+
8+
dependencies = [
9+
('person', '0016_auto_20200807_0750'),
10+
]
11+
12+
operations = [
13+
migrations.AlterField(
14+
model_name='historicalperson',
15+
name='plain',
16+
field=models.CharField(blank=True, default='', help_text="Use this if you have a Spanish double surname. Don't use this for nicknames, and don't use it unless you've actually observed that the datatracker shows your name incorrectly.", max_length=64, verbose_name='Plain Name correction (Unicode)'),
17+
),
18+
migrations.AlterField(
19+
model_name='person',
20+
name='plain',
21+
field=models.CharField(blank=True, default='', help_text="Use this if you have a Spanish double surname. Don't use this for nicknames, and don't use it unless you've actually observed that the datatracker shows your name incorrectly.", max_length=64, verbose_name='Plain Name correction (Unicode)'),
22+
),
23+
]

ietf/person/models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ class Person(models.Model):
4141
# The normal unicode form of the name. This must be
4242
# set to the same value as the ascii-form if equal.
4343
name = models.CharField("Full Name (Unicode)", max_length=255, db_index=True, help_text="Preferred long form of name.")
44-
plain = models.CharField("Plain Name (Unicode)", max_length=64, default='', blank=True, help_text="Preferred plain form of name, if different from the automatic plain form.")
44+
plain = models.CharField("Plain Name correction (Unicode)", max_length=64, default='', blank=True, help_text="Use this if you have a Spanish double surname. Don't use this for nicknames, and don't use it unless you've actually observed that the datatracker shows your name incorrectly.")
4545
# The normal ascii-form of the name.
4646
ascii = models.CharField("Full Name (ASCII)", max_length=255, help_text="Name as rendered in ASCII (Latin, unaccented) characters.")
4747
# The short ascii-form of the name. Also in alias table if non-null

0 commit comments

Comments
 (0)