Skip to content

Commit 91afe9c

Browse files
committed
Add initial text for nominations in position edit form.
See ietf-tools#1010 - Legacy-Id: 5691
1 parent 4796e97 commit 91afe9c

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

ietf/nomcom/forms.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -736,11 +736,12 @@ class NomComTemplateForm(BaseNomcomForm, DBTemplateForm):
736736
class PositionForm(BaseNomcomForm, forms.ModelForm):
737737

738738
fieldsets = [('Position', ('name', 'description',
739+
'initial_text',
739740
'is_open', 'incumbent'))]
740741

741742
class Meta:
742743
model = Position
743-
fields = ('name', 'description', 'is_open', 'incumbent')
744+
fields = ('name', 'description', 'initial_text', 'is_open', 'incumbent')
744745

745746
def __init__(self, *args, **kwargs):
746747
self.nomcom = kwargs.pop('nomcom', None)

0 commit comments

Comments
 (0)