Skip to content

Commit 8c98abb

Browse files
authored
fix: Edit "You've been nominated" text (ietf-tools#4641) (ietf-tools#5357)
Mention that the schedule is posted to ietf-announce and give a link to subscribe to that. Use vague wording to handle all cases. Also add reminder when to not uncheck the "send automatically" box.
1 parent 3728911 commit 8c98abb

2 files changed

Lines changed: 19 additions & 1 deletion

File tree

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Generated by Django 2.2.28 on 2023-03-25 02:52
2+
3+
from django.db import migrations, models
4+
5+
6+
class Migration(migrations.Migration):
7+
8+
dependencies = [
9+
('nomcom', '0013_update_accepting_volunteers_helptext'),
10+
]
11+
12+
operations = [
13+
migrations.AlterField(
14+
model_name='nomcom',
15+
name='send_questionnaire',
16+
field=models.BooleanField(default=False, help_text='If you check this box, questionnaires are sent automatically after nominations. DO NOT CHECK if they are not ready yet.', verbose_name='Send questionnaires automatically'),
17+
),
18+
]

ietf/nomcom/models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ class NomCom(models.Model):
4848

4949
group = ForeignKey(Group)
5050
send_questionnaire = models.BooleanField(verbose_name='Send questionnaires automatically', default=False,
51-
help_text='If you check this box, questionnaires are sent automatically after nominations.')
51+
help_text='If you check this box, questionnaires are sent automatically after nominations. DO NOT CHECK if they are not ready yet.')
5252
reminder_interval = models.PositiveIntegerField(help_text='If the nomcom user sets the interval field then a cron command will '
5353
'send reminders to the nominees who have not responded using '
5454
'the following formula: (today - nomination_date) % interval == 0.',

0 commit comments

Comments
 (0)