{% extends 'base.html' %} {% load carconnectivity_filters %} {% block title %}Plugin {{ plugin.id }} Log{% endblock %} {% block header %}Plugin {{ plugin.id }} Log{% endblock %} {% block content %}
{% if request.GET.refresh %} Stop auto-refresh {% else %} Auto-refresh: 15s {% endif %}
{% if log_entries %}
Last {{ log_entries|length }} log entries, latest first:
{% for record in log_entries %}{{ record|format_log_record:formatter|ansi2html|safe }}
{% endfor %}
{% else %}

No logs available

Logs will appear here once the plugin starts generating them.

{% endif %}
{% endblock %} {% block extra_js %} {% endblock %}