Browse Source

posts editable for only for author

newsletter
Esther Kleinhenz 5 years ago
parent
commit
4b28a5a91b
1 changed files with 2 additions and 0 deletions
  1. 2
    0
      application/templates/post_detail.html

+ 2
- 0
application/templates/post_detail.html View File

@@ -7,12 +7,14 @@
{% else %}
<a class="btn btn-outline-dark" href="{% url 'post_publish' pk=post.pk %}">Publish</a>
{% endif %}
{% if user.is_staff and user == post.author %}
<a class="btn btn-outline-dark" href="{% url 'post_edit' pk=post.pk %}">
<span class="glyphicon glyphicon-pencil">Edit</span>
</a>
<a class="btn btn-outline-dark" href="{% url 'post_remove' pk=post.pk %}">
<span class="glyphicon glyphicon-remove">Remove</span>
</a>
{% endif %}
<h1>{{ post.title }}</h1>
<p>{{ post.text|linebreaksbr }}</p>
</div>

Loading…
Cancel
Save