diff options
author | luxagraf <sng@luxagraf.net> | 2024-01-17 11:52:58 -0500 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2024-01-17 11:52:58 -0500 |
commit | 163a4247110861510b58765a19efbd98c084b350 (patch) | |
tree | 149bcf4e432185cf3061f9cc8a50face168e71c9 /app/gtd | |
parent | d573ecad14301886c5b3ef72ce5639e33384574c (diff) |
gtd: added category to admin
Diffstat (limited to 'app/gtd')
-rw-r--r-- | app/gtd/admin.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/gtd/admin.py b/app/gtd/admin.py index 8709f93..0e56f59 100644 --- a/app/gtd/admin.py +++ b/app/gtd/admin.py @@ -10,7 +10,7 @@ print(WiredPost) @admin.register(WiredPost) class WiredPostAdmin(admin.ModelAdmin): - list_display = ('title', 'date_last_pub', 'update_frequency', 'needs_update', 'post_status') + list_display = ('title', 'date_last_pub', 'category', 'update_frequency', 'needs_update', 'post_status') search_fields = ['title'] list_filter = ['post_status', 'post_type', 'update_frequency'] |