datatracker/ietf/nomcom/migrations/0013_update_accepting_volunteers_helptext.py
Jim Fenton 3aab73d862
feat(nomcom): Allow nomcom chair to turn volunteer acceptance on and off (#4251)
* feat(nomcom): Allow nomcom chair to turn volunteer acceptance on and off
Fixes #4105
Also allows chair to set date of first call for volunteers. If this should be read-only and set by the code, let me know.

* fix(nomcom): Correct helptext for accepting volunteers
2022-07-24 08:51:57 -05:00

19 lines
504 B
Python

# Generated by Django 2.2.28 on 2022-07-23 13:14
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('nomcom', '0012_populate_volunteers'),
]
operations = [
migrations.AlterField(
model_name='nomcom',
name='is_accepting_volunteers',
field=models.BooleanField(default=False, help_text='Is this nomcom currently accepting volunteers?', verbose_name='Accepting volunteers'),
),
]