{% extends "base.html" %} {% block content %}

Logtracker - journal entries : {{ page_obj.paginator.count }} {% if page_obj.has_previous %} « first previous {% endif %} Page {{ page_obj.number }} of {{ page_obj.paginator.num_pages }}. {% if page_obj.has_next %} next last » {% endif %}

{{ form.as_table }}
{% for line in object_list %} {% empty %} No data yet. {% endfor %}
Time Host Unit Message
{{ line.timestamp|date:'b d H:i:s' }} {{ line.host }} {{ line.unit }} {{ line.data.MESSAGE }}
{% endblock %}