{% extends 'base.html' %} {% load carconnectivity_filters %} {% block title %}System Log{% endblock %} {% block header %}System Log{% endblock %} {% block content %}
{% if log_entries %}
Last {{ log_entries|length }} log entries (CarConnectivity process only)
Sort: Latest first Oldest first
{% for record in log_entries %}{{ record|format_log_record:formatter|ansi2html|safe }}
{% endfor %}
{% else %}

No logs available

System logs will appear here once the application starts generating them.

{% endif %}
{% endblock %}