aboutsummaryrefslogtreecommitdiff
path: root/templates/show_paste.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/show_paste.html')
-rw-r--r--templates/show_paste.html4
1 files changed, 3 insertions, 1 deletions
diff --git a/templates/show_paste.html b/templates/show_paste.html
index 89ad18e..9628402 100644
--- a/templates/show_paste.html
+++ b/templates/show_paste.html
@@ -11,7 +11,9 @@
<dd>{{ paste.pub_date.strftime('%Y-%m-%d @ %H:%M') }}
<dt>Actions
<dd>
- <a href="{{ url_for('new_paste', reply_to=paste.id) }}">Reply</a>
+ {% if not paste.is_private %}
+ <a href="{{ url_for('new_paste', reply_to=paste.id) }}">Reply</a>
+ {% endif %}
{%- if g.user and paste.user == g.user -%}
, <a href="{{ url_for('delete_paste', paste_id=paste.id) }}">Delete</a>
{% endif %}
bgstack15