{% extends 'base.html' %} {% block header %}

{% block title %}Plugin {{plugin.id}} Log{% endblock %}

{% endblock %} {% block content %} Last {{ plugin.log_storage.storage|length }} log entries, latest first:
{% for log_record in plugin.log_storage.storage|reverse %} {{ ansi2html(formatter.format(log_record)) }}
{% endfor %}
{% endblock %}