{% load i18n %} {% load zinnia %} {% for comment in comments %} {{ comment.name }} {% with entry=comment.content_object %} {% blocktrans with comment_author=comment.name comment_pk=comment.pk comment_author_slug=comment.user_name|slugify entry_url=entry.get_absolute_url entry_title=entry.title trimmed %} {{ comment_author }} in {{ entry_title }} {% endblocktrans %} {% endwith %} {{ comment.comment|truncatewords:20|linebreaks }} {% trans "Edit" %} {% empty %} {% trans "No comments yet." %} {% endfor %} {% if comments %} {% trans "Manage the comments" %} {% endif %}