Skip to content
Snippets Groups Projects

Resolve "Show also groups with child groups with lessons in my groups"

3 files
+ 30
17
Compare changes
  • Side-by-side
  • Inline
Files
3
@@ -79,11 +79,7 @@ class SelectForm(forms.Form):
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
self.fields["group"].queryset = (
Group.objects.for_current_school_term_or_all()
.annotate(lessons_count=Count("lessons"))
.filter(lessons_count__gt=0)
)
self.fields["group"].queryset = Group.get_groups_with_lessons()
PersonalNoteFormSet = forms.modelformset_factory(
Loading