diff options
author | citrons <citrons> | 2021-08-06 04:54:23 +0000 |
---|---|---|
committer | citrons <citrons> | 2021-08-06 04:54:23 +0000 |
commit | bd7a53ba3daf8853707d6df511cc1e31d2a850a3 (patch) | |
tree | 809a02f054c3d5449cc4dd31268429456e3aceb9 | |
parent | 6d2a72726f95ba762ede5c25aff8b73573fb77c0 (diff) |
fix thread edit page
-rw-r--r-- | apioforum/templates/config_thread.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apioforum/templates/config_thread.html b/apioforum/templates/config_thread.html index 7403614..383cc9c 100644 --- a/apioforum/templates/config_thread.html +++ b/apioforum/templates/config_thread.html @@ -29,7 +29,7 @@ <a href="{{url_for('thread.view_thread',thread_id=thread.id)}}">cancel</a> </form> -{% if thread.poll is none and has_permission(thread.forum, g.user, "p_create_polls" %} +{% if thread.poll is none and has_permission(thread.forum, g.user, "p_create_polls") %} <h2>create poll</h2> <form method="post" action="{{url_for('thread.create_poll',thread_id=thread.id)}}"> <fieldset> |