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/posts/urls.py | |
parent | cf0f93063a8a6c712c22b83eb5297cc9a0bb85e8 (diff) |
posts: added todo view of guides and reviews that need to be done
Diffstat (limited to 'app/posts/urls.py')
-rw-r--r-- | app/posts/urls.py | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/app/posts/urls.py b/app/posts/urls.py index c7da54e..8c91a4c 100644 --- a/app/posts/urls.py +++ b/app/posts/urls.py @@ -11,9 +11,14 @@ urlpatterns = [ name="list" ), path( + r'new', + views.PostNewView.as_view(), + name="new" + ), + path( r'todo', views.PostTodoView.as_view(), - name="todo" + name="new" ), path( r'<pk>/notes', |