diff options
author | luxagraf <sng@luxagraf.net> | 2025-04-07 17:00:18 -0500 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2025-04-07 17:00:18 -0500 |
commit | 81aa0bb69e89590c78a001dd42c8735b80ff224a (patch) | |
tree | b1647555251771b87c27c2dfed0b989c36a9c925 | |
parent | 989bcd064c4bd994636cd33efd51f38ce8de3619 (diff) |
notes: made notes editable in the admin
-rw-r--r-- | app/notes/admin.py | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/app/notes/admin.py b/app/notes/admin.py index 5409200..2c099ca 100644 --- a/app/notes/admin.py +++ b/app/notes/admin.py @@ -18,16 +18,10 @@ class LuxNoteAdmin(admin.ModelAdmin): 'title', 'url', 'description', - 'body_markdown' + 'body_markdown', 'tags', ) }), - ('Details', { - 'fields': ( - 'date_created ', - ), - 'classes': 'collapse' - }), ) class Media: |