12345678910111213141516171819202122232425262728 |
- {% extends 'base.html' %} {% block content %}
- <div class="post">
- {% if post.published_date %}
- <div class="date">
- {{ post.published_date }}
- </div>
- {% 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>
- <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 %}
|