diff options
author | luxagraf <sng@luxagraf.net> | 2023-07-20 10:04:24 -0500 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2023-07-20 10:04:24 -0500 |
commit | 484ce7f0d996500796617f61e158b6d27150dcff (patch) | |
tree | 908a6fe5fa111f8842b2f947b655bbd8b5b9942f | |
parent | 0d9832ddea1bab497674ffcb81503dbc98b014d9 (diff) |
posts: fixed template bug
-rw-r--r-- | app/posts/templates/posts/post_list.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/posts/templates/posts/post_list.html b/app/posts/templates/posts/post_list.html index 4c54f62..7dfc5ef 100644 --- a/app/posts/templates/posts/post_list.html +++ b/app/posts/templates/posts/post_list.html @@ -56,7 +56,7 @@ Date last pub <input type="checkbox" name="_selected_action" value="349" class="action-select"> </td> <td class="field-title"> - <a href="/post/{{object.id}}/notes/">{{object.title}}</a> + <a href="/post/{{object.id}}/notes">{{object.title}}</a> </td> <td class="field-admin_url"> <a target="_blank" href="{{object.url}}"> |