{% load filters functions i18n %}
  • {% with time=entry.date_created|entrydate:entry.date_edited %}
    {% if show_title == "yes" %}

    {{ entry.topic.title }}

    {% endif %}
    {% if not entry.author.is_private %}
    {{ entry.author.username }}
    {% else %} {% trans "anonymous" %} {% endif %}
    {% endwith %}
    {% with comments=entry.comments.all %} {% if show_comments and comments %}
    {% for comment in comments %}
    {% endfor %}
    {% endif %} {% endwith %}