posts editable for only for author
This commit is contained in:
parent
774757c610
commit
4b28a5a91b
@ -7,12 +7,14 @@
|
|||||||
{% else %}
|
{% else %}
|
||||||
<a class="btn btn-outline-dark" href="{% url 'post_publish' pk=post.pk %}">Publish</a>
|
<a class="btn btn-outline-dark" href="{% url 'post_publish' pk=post.pk %}">Publish</a>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
{% if user.is_staff and user == post.author %}
|
||||||
<a class="btn btn-outline-dark" href="{% url 'post_edit' pk=post.pk %}">
|
<a class="btn btn-outline-dark" href="{% url 'post_edit' pk=post.pk %}">
|
||||||
<span class="glyphicon glyphicon-pencil">Edit</span>
|
<span class="glyphicon glyphicon-pencil">Edit</span>
|
||||||
</a>
|
</a>
|
||||||
<a class="btn btn-outline-dark" href="{% url 'post_remove' pk=post.pk %}">
|
<a class="btn btn-outline-dark" href="{% url 'post_remove' pk=post.pk %}">
|
||||||
<span class="glyphicon glyphicon-remove">Remove</span>
|
<span class="glyphicon glyphicon-remove">Remove</span>
|
||||||
</a>
|
</a>
|
||||||
|
{% endif %}
|
||||||
<h1>{{ post.title }}</h1>
|
<h1>{{ post.title }}</h1>
|
||||||
<p>{{ post.text|linebreaksbr }}</p>
|
<p>{{ post.text|linebreaksbr }}</p>
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user