{% extends 'blog/base.html' %} {% load blog %} {% block title %}{{ entry.title }}{% endblock %} {% block base_description %}{{ entry.description }}{% endblock %} {% block content %}

{{ entry.title }}

{% if entry.description %}

{{ entry.description|escape }}

{% endif %}

{% translate "Tags" %}: {% for tag in entry.tags %} {{ tag }} {% empty %} {% translate "not defined" %} {% endfor %}

{% autoescape off %} {{ entry.text|default:""|wiki }} {% endautoescape %}
{{ entry.created|date:"j M Y, G:i" }} {% if entry.changed.date != entry.created.date %} (edited {{ entry.changed|date:"j M Y, G:i" }}) {% endif %} {% translate "from" %} {{ entry.author }} {% if user.is_admin %} {% translate "Edit" %} {% translate "Delete" %} {% endif %}
{% comment %} {% get_comment_count for entry as comment_count %}

{% translate "Comments" %} ({{ comment_count }})

{% render_comment_list for entry %} Show all comments
Add new comment

{% translate "Add comment" %}

{% render_comment_form for entry %}
{% endcomment %} {% endblock %}