From d1eeaafc42c6412f9c995ae5b25c7aafe912099d Mon Sep 17 00:00:00 2001
From: moanos <julian-samuel@gebuehr.net>
Date: Tue, 17 Dec 2024 20:14:14 +0100
Subject: [PATCH] feat: Also search for description, internal comment and
 location of rescue orgs

icontains is default and therefore ommitted
https://docs.djangoproject.com/en/5.1/ref/contrib/admin/#django.contrib.admin.ModelAdmin.search_fields
---
 src/fellchensammlung/admin.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/fellchensammlung/admin.py b/src/fellchensammlung/admin.py
index eca24e9..14e1fa9 100644
--- a/src/fellchensammlung/admin.py
+++ b/src/fellchensammlung/admin.py
@@ -96,7 +96,7 @@ class ReportAdoptionNoticeAdmin(admin.ModelAdmin):
 
 @admin.register(RescueOrganization)
 class RescueOrganizationAdmin(admin.ModelAdmin):
-    search_fields = ("name__icontains",)
+    search_fields = ("name","description", "internal_comment", "location_string")
     list_display = ("name", "trusted", "allows_using_materials", "website")
     list_filter = ("allows_using_materials", "trusted",)