You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -535,17 +542,27 @@ class AdvancedDocumentSearchForm(forms.Form):
535
542
choices=AUTHOR_CHOICES,
536
543
help_text="Personal author: the author's name, with a title or other identifying information if available. This information is usually drawn from the document itself, but often other documents provide additional information. Group author: provided if the document was produced by an agency or group or another collective source (e.g., laws published in the official state gazette).",
537
544
)
538
-
defendant=forms.MultipleChoiceField(
545
+
author_and_or_or=forms.MultipleChoiceField(
539
546
required=False,
540
-
choices=DEFENDANT_CHOICES,
541
-
help_text="Applies to case files only; indicates which defendants are involved or relevant to the subjects covered by the document.",
547
+
choices=AND_OR_OR_CHOICES,
548
+
help_text="Whether to AND or OR these selections",
542
549
)
543
550
issue=forms.MultipleChoiceField(
544
551
label=_('Trial Issues'),
545
552
required=False,
546
553
choices=ISSUE_CHOICES,
547
554
help_text="Subjects of trial documents; applies to case files only; indicates the subject areas of the document that are relevant for the trial. Other subjects are not indicated.",
548
555
)
556
+
issue_and_or_or=forms.MultipleChoiceField(
557
+
required=False,
558
+
choices=AND_OR_OR_CHOICES,
559
+
help_text="Whether to AND or OR these selections",
560
+
)
561
+
defendant=forms.MultipleChoiceField(
562
+
required=False,
563
+
choices=DEFENDANT_CHOICES,
564
+
help_text="Applies to case files only; indicates which defendants are involved or relevant to the subjects covered by the document.",
0 commit comments