{% extends 'paxalia/base.html' %} {% load i18n static %} {% block title %}{{ page_title }} — Paxalia{% endblock %} {% block page_title %}{{ page_title }}{% endblock %} {% block page_subtitle %}{{ page_subtitle }}{% endblock %} {% block extra_css %}{% endblock %} {% block filter_bar %} {% if sources %}
{% trans "Range" %}–
{% trans "More filters" %}
{% trans "Clear filters" %}
{% endif %} {% endblock %} {% block dashboard_content %}
{% if sources %} {% if selected_source and summary %}
{% trans "Matching records" %}{{ summary.total }}
{% trans "Total model records" %}{{ source_stats.total }}
{% trans "Classified errors" %}{{ source_stats.errors }}
{% trans "Classified warnings" %}{{ source_stats.warnings }}
{% if source_stats.top_actions %}

{% trans "Top actions" %}

{% for item in source_stats.top_actions %}{% endfor %}
{% trans "Action" %}{% trans "Count" %}
{{ item.action }}{{ item.count }}
{% endif %}

{% trans "Application activity" %}

{{ page_obj.paginator.count }} {% trans "matching records" %}
{% for key in summary.headers %}{% endfor %}{% for row in summary.rows %}{% for key, value in row.items %}{% endfor %}{% empty %}{% endfor %}
{{ key }}
{{ value }}
{% trans "No records found for the selected filters." %}
{% include 'paxalia/includes/pagination.html' %}
{% else %}

{% trans "No compatible application log source selected" %}

{% trans "The configured adapters were not available to your account or could not be resolved safely." %}

{% endif %} {% else %}

{% trans "No application log adapters configured" %}

{% trans "Application Logs is a read-only adapter layer. It reads existing host application log models; it does not capture, ingest, or duplicate Paxalia Logs." %}

{% trans "Configure PAXALIA_DASHBOARD['APPLICATION_LOGS'] with safe model and field mappings for a host model, then return here." %}

{% trans "Use Paxalia Logs for canonical Python, Django, HTTP, and browser observability." %}

{% endif %}
{% endblock %} {% block page_scripts %}{% endblock %}