Skip to content

Commit

Permalink
Merge pull request #125 from arthur-schnitzler/main
Browse files Browse the repository at this point in the history
formulierungen in beschreibungstext korrigiert
  • Loading branch information
csae8092 authored Jan 27, 2025
2 parents 2e644fd + 5f50f64 commit f839ced
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion apis_core/apis_entities/list_view_event.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ class EventListFilter(MyBaseFilter):
)
kind = django_filters.ModelMultipleChoiceFilter(
queryset=EventType.objects.all(),
help_text="Art/Typ des Ereignisses, z.B. 'Premiere'",
help_text="Art des Ereignisses, z.B. 'Premiere'",
label="Art des Ereignisses",
widget=autocomplete.Select2Multiple(
url="/apis/vocabularies/autocomplete/eventtype/normal/",
Expand Down
2 changes: 1 addition & 1 deletion apis_core/apis_entities/list_view_institution.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ class InstitutionListFilter(MyBaseFilter):
)
kind = django_filters.ModelMultipleChoiceFilter(
queryset=InstitutionType.objects.all(),
help_text="Art/Typ der Institution, z.B. 'Roman'",
help_text="Art der Institution, z.B. 'Redaktion'",
label="Institutionstyp",
widget=autocomplete.Select2Multiple(
url="/apis/vocabularies/autocomplete/institutiontype/normal/",
Expand Down
2 changes: 1 addition & 1 deletion apis_core/apis_entities/list_view_place.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ class PlaceListFilter(MyBaseFilter):
)
kind = django_filters.ModelMultipleChoiceFilter(
queryset=PlaceType.objects.all(),
help_text="Art/Typ des Ortes, z.B. 'Roman'",
help_text="Art des Ortes, z.B. 'Theater'",
label="Ortstyp",
widget=autocomplete.Select2Multiple(
url="/apis/vocabularies/autocomplete/placetype/normal/",
Expand Down
2 changes: 1 addition & 1 deletion apis_core/apis_entities/list_view_work.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ class WorkListFilter(MyBaseFilter):
)
kind = django_filters.ModelMultipleChoiceFilter(
queryset=WorkType.objects.all(),
help_text="Art/Typ des Werkes, z.B. 'Roman'",
help_text="Art des Werkes, z.B. 'Roman'",
label="Werktype",
widget=autocomplete.Select2Multiple(
url="/apis/vocabularies/autocomplete/worktype/normal/",
Expand Down

0 comments on commit f839ced

Please sign in to comment.