2.1.39 fix users_notify_by_result_search_matches

This commit is contained in:
SDE
2025-02-17 18:22:23 +03:00
parent c57eec05c9
commit 3b0e1f6524
3 changed files with 59 additions and 37 deletions

View File

@@ -30,6 +30,6 @@ class Admin_Route(Admin_Trans_BaseModel):
search_fields = [
'owner__first_name', 'owner__last_name', 'from_city__name', 'to_city__name', 'owner__email'
]
raw_id_fields = ['from_city', 'to_city']
raw_id_fields = ['from_city', 'to_city', 'owner']
admin.site.register(Route,Admin_Route)
admin.site.register(Route, Admin_Route)