#99 Admin backend cleanup

* removes admin backend views which are not important for production
* adds filtering functionalities on index views
* simplifies detail views on intervention, compensation, ecoaccount and ema
* adds autocomplete fields on detail views
* adds handy horizontal filter fields on detail views
This commit is contained in:
2022-02-01 18:41:02 +01:00
parent c4c36d27a2
commit b0f3505972
14 changed files with 243 additions and 60 deletions

View File

@@ -12,5 +12,9 @@ class APITokenAdmin(admin.ModelAdmin):
readonly_fields = [
"token"
]
search_fields = [
"token"
]
admin.site.register(APIUserToken, APITokenAdmin)