Skip to content

Commit

Permalink
fix(admin): add more search options to aircraft
Browse files Browse the repository at this point in the history
  • Loading branch information
zyv committed Nov 4, 2023
1 parent 75e1c6a commit a75ab36
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion logbook/admin.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class AerodromeAdmin(admin.ModelAdmin):

@admin.register(Aircraft)
class AircraftAdmin(admin.ModelAdmin):
search_fields = ("registration",)
search_fields = ("registration", "maker", "model")
save_as = True

fieldsets = [
Expand Down

0 comments on commit a75ab36

Please sign in to comment.