datatracker/ietf/nomcom/migrations/0003_alter_nomination_share_nominator.py
Paul Selkirk d2406d8420
fix: tweak Nomination.share_nominator label text (#5775)
* fix: tweak Nomination.share_nominator label text

"Share nominator name with candidate" was confusing, because it's
imperative, where it's really intended to be permissive - it's okay to
share with the candidate.

* chore: add migration for label text
2023-06-08 13:47:46 -05:00

22 lines
758 B
Python

# Generated by Django 4.2.2 on 2023-06-08 18:06
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("nomcom", "0002_add_uncheck_reminder"),
]
operations = [
migrations.AlterField(
model_name="nomination",
name="share_nominator",
field=models.BooleanField(
default=False,
help_text="Check this box to allow the NomCom to let the person you are nominating know that you were one of the people who nominated them. If you do not check this box, your name will be confidential and known only within NomCom.",
verbose_name="OK to share nominator's name with candidate",
),
),
]