Skip to content

Commit

Permalink
update project filter labels
Browse files Browse the repository at this point in the history
  • Loading branch information
sarahframe committed Jul 8, 2024
1 parent 0eda5ed commit 0c245ec
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions cdhweb/projects/forms.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,18 +14,21 @@ class ProjectFiltersForm(forms.Form):
empty_label="--Select--",
required=False,
blank=True,
label="Method/Approach"
)
field = forms.ModelChoiceField(
ProjectField.objects.all(),
empty_label="--Select--",
required=False,
blank=True,
label="Field of study"
)
role = forms.ModelChoiceField(
ProjectRole.objects.all(),
empty_label="--Select--",
required=False,
blank=True,
label="Role"
)
current = forms.BooleanField(required=False, initial=True)
cdh_built = forms.BooleanField(required=False, label="Built by CDH")

0 comments on commit 0c245ec

Please sign in to comment.