{% extends "base.html" %} {% block title %}Logs - Server Monitoring{% endblock %} {% block page_title %}Log Viewer{% endblock %} {% block extra_css %} {% endblock %} {% block content %}
Showing {{ logs|length }} of {{ pagination.total|default(0) }} log entries {% if current_device_id or current_severity or current_search %} Clear Filters {% endif %}
{% if logs %} {% for log in logs %}
{{ log.severity|default('info')|upper }} {{ log.device.hostname }} ({{ log.device.device_ip }}) {% if log.device.nume_masa %} {{ log.device.nume_masa }} {% endif %}
{{ log.resolved_message|default(log.full_message)|truncate(200) }}
{{ log.timestamp | local_dt('%Y-%m-%d %H:%M:%S') if log.timestamp else 'N/A' }} {% if log.template_hash %} Template: {{ log.template_hash[:8] }} {% endif %}
{% endfor %} {% else %}

No Logs Found

No log entries match the current filters.

{% if current_device_id or current_severity or current_search %} View All Logs {% endif %}
{% endif %}
{% if pagination and pagination.total_pages > 1 %}
Page {{ pagination.page }} of {{ pagination.total_pages }} ({{ pagination.total }} total entries)
{% endif %} {% endblock %} {% block extra_js %} {% endblock %}