Skip to content

Commit

Permalink
Update paf status field label on modal
Browse files Browse the repository at this point in the history
  • Loading branch information
sandeepsajan0 committed Jul 17, 2023
1 parent c3fc084 commit 9931791
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hypha/apply/projects/forms/project.py
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ def save(self, *args, **kwargs):

class ChangePAFStatusForm(forms.ModelForm):
name_prefix = 'change_paf_status_form'
paf_status = forms.ChoiceField(choices=PAF_STATUS_CHOICES, widget=forms.RadioSelect())
paf_status = forms.ChoiceField(label="PAF status", choices=PAF_STATUS_CHOICES, widget=forms.RadioSelect())
comment = forms.CharField(required=False, widget=forms.Textarea)

class Meta:
Expand Down

0 comments on commit 9931791

Please sign in to comment.