diff options
author | luxagraf <sng@luxagraf.net> | 2023-07-26 16:53:24 -0500 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2023-07-26 16:53:24 -0500 |
commit | 8e429c6b453e1061ee997934f241f76f2f103710 (patch) | |
tree | c90921be881d315baeb709f38382fa71f1438546 /app/notes/views.py | |
parent | cf0f93063a8a6c712c22b83eb5297cc9a0bb85e8 (diff) |
posts: added todo view of guides and reviews that need to be done
Diffstat (limited to 'app/notes/views.py')
-rw-r--r-- | app/notes/views.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/notes/views.py b/app/notes/views.py index 7dd9c04..209d896 100644 --- a/app/notes/views.py +++ b/app/notes/views.py @@ -29,7 +29,7 @@ class NoteCreateView(LoginRequiredMixin, CreateView): class NoteUpdateView(LoginRequiredMixin, UpdateView): model = Note - fields = ['title', 'url', 'body_markdown', 'post', 'status', 'user'] + fields = ['title', 'url', 'body_markdown', 'post', 'status', 'plan'] def get_context_data(self, **kwargs): context = super(NoteUpdateView, self).get_context_data(**kwargs) |