28 lines
940 B
HTML
Raw Normal View History

{% extends 'base.html' %} {% block content %}
<div class="post">
{% if post.published_date %}
<div class="date">
{{ post.published_date }}
</div>
{% else %}
2018-07-23 07:35:45 +02:00
<a class="btn btn-outline-dark" href="{% url 'post_publish' pk=post.pk %}">Publish</a>
2018-08-19 22:55:06 +02:00
{% endif %} {% if user.is_staff and user == post.author %}
2018-07-23 07:35:45 +02:00
<a class="btn btn-outline-dark" href="{% url 'post_edit' pk=post.pk %}">
<span class="glyphicon glyphicon-pencil">Edit</span>
</a>
2018-07-23 07:35:45 +02:00
<a class="btn btn-outline-dark" href="{% url 'post_remove' pk=post.pk %}">
<span class="glyphicon glyphicon-remove">Remove</span>
</a>
2018-08-15 11:33:53 +02:00
{% endif %}
<h1>{{ post.title }}</h1>
<p>{{ post.text|linebreaksbr }}</p>
2018-08-19 22:55:06 +02:00
<p>
{% for tag in post.tags.all %}
<a href="{% url 'blog_search_list_view' %}">{{ tag.name }}, </a>
{% endfor %}
</p>
<p>
Autor: {{ post.author }}
</p>
</div>
{% endblock %}