diff options
author | luxagraf <sng@luxagraf.net> | 2025-03-29 15:59:42 -0500 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2025-03-29 15:59:42 -0500 |
commit | 6f4fa7dee9c88c4aff8dd7df9bc6c70ab951696e (patch) | |
tree | 47355b19190f53b024419c4bbd83116223d30320 | |
parent | d84942ba8b21afc9be2e7e5908c89abd613725c9 (diff) |
gtd: added note admin
-rw-r--r-- | app/gtd/admin.py | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/app/gtd/admin.py b/app/gtd/admin.py index 7335727..0d8dee8 100644 --- a/app/gtd/admin.py +++ b/app/gtd/admin.py @@ -5,7 +5,9 @@ from utils.widgets import AdminImageWidget, LGEntryForm from .models import ( WiredNote, WiredPost, - WiredUpdate + WiredUpdate, + GTDNote, + GTDProject ) @admin.register(WiredPost) class WiredPostAdmin(admin.ModelAdmin): @@ -22,3 +24,7 @@ class WiredPostAdmin(admin.ModelAdmin): class WiredUpdateAdmin(admin.ModelAdmin): list_display = ('name', 'date') + +@admin.register(GTDNote) +class GTDNoteAdmin(admin.ModelAdmin): + pass |