{% extends 'base.html' %}{% block content %} {% load hitcount_tags %}
{% if post.published_date %}
{{ post.published_date }}
{% else %} Publish {% endif %} {% if user.is_staff and user == post.author %} Bearbeiten Löschen {% endif %}

{{ post.title }}

{{ post.text|linebreaksbr }}

Tags: {% for tag in post.tags.all %} {{ tag.name }} {% if not forloop.last %}, {% endif %} {% endfor %}

{{ post.author }} {% if user.is_staff %}

{% get_hit_count for post %} Benutzer haben diesen Post bereits gelesen!

{% endif %}

{% endblock %}