{% extends "zinnia/base.html" %} {% load i18n comments zinnia_tags %} {% block title %}{{ object.title }}{% endblock %} {% block meta-description %}{% if object.excerpt %}{{ object.excerpt|striptags }}{% else %}{{ object.content|striptags|truncatewords:100 }}{% endif %}{% endblock %} {% block meta-keywords %}{% if object.tags %}{{ object.tags }}{% else %}{{ block.super }}{% endif %}{% endblock %} {% block link %} {{ block.super }} {% with object.previous_entry as previous_entry %}{% if previous_entry %} {% endif %}{% endwith %} {% with object.next_entry as next_entry %}{% if next_entry %} {% endif %}{% endwith %} {% if object.short_url %} {% endif %} {% with object.creation_date|date:"Y" as year %} {% with object.creation_date|date:"m" as month %} {% with object.creation_date|date:"d" as day %} {% endwith %} {% endwith %} {% endwith %} {% endblock %} {% block content %}
{% with object.html_content|safe as object_content %} {% include "zinnia/_entry_detail.html" %} {% endwith %}

{% with object.next_entry as next_entry %} {% if next_entry %}

{% trans "Next entry" %}

{% endif %} {% endwith %} {% with object.previous_entry as previous_entry %} {% if previous_entry %}

{% trans "Previous entry" %}

{% endif %} {% endwith %} {% if object.related_published %}

{% trans "Related entries" %}

{% endif %}

{% trans "Similar entries" %}

{% get_similar_entries 5 %}

{% trans "Comments" %}

{% with object.comments as comment_list %} {% if comment_list.count %}
    {% for comment in comment_list %} {% endfor %}
{% if not object.comments_are_open %}

{% trans "Comments are closed." %}

{% endif %} {% else %} {% if object.comments_are_open %}

{% trans "No comments yet." %}

{% else %}

{% trans "Comments are closed." %}

{% endif %} {% endif %} {% endwith %}

{% trans "Pingbacks" %}

{% with object.pingbacks as pingback_list %} {% if pingback_list.count %}
    {% for pingback in pingback_list %}
  1. {{ pingback.user_name }} {% trans "on" %} {{ pingback.submit_date|date:"SHORT_DATETIME_FORMAT" }}
    {{ pingback.comment }}
  2. {% endfor %}
{% endif %} {% if object.pingback_enabled %}

{% trans "Pingbacks are open." %}

{% else %}

{% trans "Pingbacks are closed." %}

{% endif %} {% endwith %}

{% trans "Trackbacks" %}

{% with object.trackbacks as trackback_list %} {% if trackback_list.count %}
    {% for trackback in trackback_list %}
  1. {{ trackback.user_name }} {% trans "on" %} {{ trackback.submit_date|date:"SHORT_DATETIME_FORMAT" }}
    {{ trackback.comment }}
  2. {% endfor %}
{% endif %} {% if object.pingback_enabled %}

{% trans "Trackback URL" %}

{% endif %} {% endwith %}
{% if object.comments_are_open %}
{% render_comment_form for object %}
{% endif %} {% endblock %} {% block admin_tools %} {% if perms.zinnia.change_entry %}
  • {% trans "Edit the entry" %}
  • {% endif %} {% endblock %}