diff options
| author | Andrew Godwin | 2022-12-16 16:38:52 -0700 | 
|---|---|---|
| committer | Andrew Godwin | 2022-12-16 16:38:52 -0700 | 
| commit | 45c6978bc397691b22db0360b16b19979eac7dce (patch) | |
| tree | 8e22839cd8a7b685f1d4491762c5d56aa5960dee /users/admin.py | |
| parent | 1bcdff79e7e14b2166056d3b16531b32474c374b (diff) | |
| download | takahe-45c6978bc397691b22db0360b16b19979eac7dce.tar.gz takahe-45c6978bc397691b22db0360b16b19979eac7dce.tar.bz2 takahe-45c6978bc397691b22db0360b16b19979eac7dce.zip | |
User admin and LD schema fixes
Diffstat (limited to 'users/admin.py')
| -rw-r--r-- | users/admin.py | 8 | 
1 files changed, 7 insertions, 1 deletions
| diff --git a/users/admin.py b/users/admin.py index 0b502d5..6c89881 100644 --- a/users/admin.py +++ b/users/admin.py @@ -89,7 +89,13 @@ class PasswordResetAdmin(admin.ModelAdmin):  @admin.register(InboxMessage)  class InboxMessageAdmin(admin.ModelAdmin): -    list_display = ["id", "state", "state_changed", "message_type", "message_actor"] +    list_display = [ +        "id", +        "state", +        "state_changed", +        "message_type_full", +        "message_actor", +    ]      list_filter = ("state",)      search_fields = ["message"]      actions = ["reset_state"] | 
