Ich versuche, ein Suchformular für eine meiner Klassen zu erstellen. Das Modell des Formulars lautet: from django import forms from django.forms import CharField, ModelMultipleChoiceField, ModelChoiceField from books.models import Book, Author, Category class SearchForm(forms.ModelForm): authors =...