{% extends "page.html" %} {% from "macros.html" import batch_footer %} {% set batch = request.batch() %} {% block title %} List of messages - {{ config.TRACKER_NAME }} {% endblock %} {% block body_title %} Message listing {% endblock %} {% block content %} {% for msg in batch %} {% endfor %} {% if batch %} {{ batch_footer(request, batch) }} {% endif %}
Messages
Author: {{ msg.author }} Date: {{ msg.date }}
{{ msg.content }}
{% endblock %}