Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions ietf/nomcom/migrations/0014_add_uncheck_reminder.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Generated by Django 2.2.28 on 2023-03-25 02:52

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('nomcom', '0013_update_accepting_volunteers_helptext'),
]

operations = [
migrations.AlterField(
model_name='nomcom',
name='send_questionnaire',
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'),
),
]
2 changes: 1 addition & 1 deletion ietf/nomcom/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ class NomCom(models.Model):

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