From 18416f395fa4ba21e839c6e5c4e7db2cc6e85088 Mon Sep 17 00:00:00 2001 From: George Katsikas <giorgakis.katsikas@gmail.com> Date: Wed, 15 Nov 2023 12:22:38 +0100 Subject: [PATCH] add nomination filter for missing specialties --- scipost_django/colleges/forms.py | 8 ++++++++ .../templates/colleges/_hx_nomination_summary.html | 11 ++++++++++- 2 files changed, 18 insertions(+), 1 deletion(-) diff --git a/scipost_django/colleges/forms.py b/scipost_django/colleges/forms.py index e3e85aa3b..a12602e9c 100644 --- a/scipost_django/colleges/forms.py +++ b/scipost_django/colleges/forms.py @@ -563,6 +563,11 @@ class FellowshipNominationSearchForm(forms.Form): required=False, initial=True, ) + needs_specialties = forms.BooleanField( + label="Needs specialties", + required=False, + initial=False, + ) orderby = forms.ChoiceField( label="Order by", @@ -609,6 +614,7 @@ class FellowshipNominationSearchForm(forms.Form): Div(Field("can_vote"), css_class="col-auto col-lg-12 col-xl-auto"), Div(Field("voting_open"), css_class="col-auto col-lg-12 col-xl-auto"), Div(Field("has_rounds"), css_class="col-auto col-lg-12 col-xl-auto"), + Div(Field("needs_specialties"), css_class="col-auto col-lg-12 col-xl-auto"), css_class="row mb-0", ) @@ -702,6 +708,8 @@ class FellowshipNominationSearchForm(forms.Form): ) if self.cleaned_data.get("has_rounds"): nominations = nominations.filter(voting_rounds__isnull=False) + if self.cleaned_data.get("needs_specialties"): + nominations = nominations.filter(profile__specialties__isnull=True) # Ordering of nominations # Only order if both fields are set diff --git a/scipost_django/colleges/templates/colleges/_hx_nomination_summary.html b/scipost_django/colleges/templates/colleges/_hx_nomination_summary.html index aac1bdbf9..6e4e24f49 100644 --- a/scipost_django/colleges/templates/colleges/_hx_nomination_summary.html +++ b/scipost_django/colleges/templates/colleges/_hx_nomination_summary.html @@ -66,9 +66,18 @@ {% if nomination.latest_voting_round %} {% include "colleges/_hx_voting_round_summary.html" with round=nomination.latest_voting_round %} + {% else %} <div class="h-100 d-flex align-items-center justify-content-end"> - <div class="badge bg-danger fs-6">No rounds created yet</div> + <div class="badge bg-danger fs-6"> + + {% if not nomination.profile.specialties.all %} + No specialties defined yet + {% else %} + No rounds created yet + {% endif %} + + </div> </div> {% endif %} -- GitLab