diff options
| -rw-r--r-- | apioforum/templates/view_thread.html | 4 | 
1 files changed, 3 insertions, 1 deletions
| diff --git a/apioforum/templates/view_thread.html b/apioforum/templates/view_thread.html index ddc45b8..eaaf581 100644 --- a/apioforum/templates/view_thread.html +++ b/apioforum/templates/view_thread.html @@ -5,7 +5,9 @@  {% endblock %}  {%block content%} -<a class="actionbutton" href="{{url_for('thread.config_thread',thread_id=thread_id)}}">configure</a> +{% if g.user == thread.creator %} +<a class="actionbutton" href="{{url_for('thread.config_thread',thread_id=thread_id)}}">configure thread</a> +{% endif %}  <div class="posts">      {% for post in posts %}      {% call disp_post(post, True) %} | 
