{% extends 'base.html' %} {% load carconnectivity_filters %} {% block title %}Connector {{ connector.id }} Log{% endblock %} {% block header %}Connector {{ connector.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 connector starts generating them.

{% endif %} {% if api_log_entries %}

API Debug Log:

Last {{ api_log_entries|length }} log entries, latest first:
{% for record in api_log_entries %}{{ record|format_log_record:formatter|ansi2html|safe }}
{% endfor %}
{% endif %}
{% endblock %} {% block extra_js %} {% endblock %}