1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <!--
- marked parts of the template is external code
- import from https://tutorial.djangogirls.org/en/template_extending/
- -->
- {% extends 'base.html' %}{% block content %}
- {% load hitcount_tags %}
- <div class="col-md-8">
-
- <!-- imported start -->
- <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>
- <!-- imported end -->
-
- {% endif %} {% if user.is_staff and user == post.author %}
-
- <!-- imported start -->
- <a class="btn btn-outline-dark" href="{% url 'post_edit' pk=post.pk %}">
- <span class="glyphicon glyphicon-pencil">Bearbeiten</span>
- </a>
- <a class="btn btn-outline-dark" href="{% url 'post_remove' pk=post.pk %}">
- <span class="glyphicon glyphicon-remove">Löschen</span>
- </a>
- {% endif %}
- <h1>{{ post.title }}</h1>
- <p>{{ post.text|linebreaksbr }}</p>
- <!-- imported end -->
- Tags: {% for tag in post.tags.all %}
- <a href="{% url 'post_list_by_tag' tag.slug %}">{{ tag.name }}</a>
- {% if not forloop.last %}, {% endif %} {% endfor %} <p>
- {{ post.author }}
- {% if user.is_staff %}
- <p>
- {% get_hit_count for post %} Benutzer haben diesen Post bereits gelesen!
- </p>
- {% endif %}
- </p>
- </div>
- </div>
- {% endblock %}
|