{% extends 'base.html' %} {% load carconnectivity_filters %} {% block title %}{{ plugin.id }} Log{% endblock %} {% block header %}{{ plugin.id }} Log{% endblock %} {% block content %}
{% if plugin.log_storage.storage %}
Last {{ plugin.log_storage.storage|length }} log entries (latest first)
{% for record in plugin.log_storage.storage|slice:"::-1" %}{{ record|format_log_record:formatter|ansi2html|safe }}
{% endfor %}
{% else %}

No logs available

Logs will appear here once the plugin starts generating them.

{% endif %}
{% endblock %}