Expertise Browser

← Back to Search
{% if status %}
Total Records {{ status.total_records or 0 }}
Active {{ status.active_records or 0 }}
Domains {{ (status.domains or []) | length }}
{% set domains = status.domains or [] %} {% if domains %}
Domains
{% for d in domains %} {% endfor %}
Domain Records Active Stale Contradictions Health
{{ d.display_name or d.name }} {{ d.record_count or 0 }} {{ d.active_count or 0 }} {{ d.stale_count or 0 }} {{ d.contradiction_count or 0 }} {% set health = d.health or 'healthy' %} {{ health }}
{% endif %} {% endif %}
{% if domain %} Domain: {{ domain_display or domain }} {% endif %}
{% if records %}
{{ total }} record{{ 's' if total != 1 else '' }} found
{% for r in records %}
{{ r.name or (r.content[:80] if r.content else 'Unnamed') }}
{% if r.content %}
{{ r.content }}
{% endif %}
{{ r.type or 'unknown' }} {% if r.domain %}{{ r.domain }}{% endif %} {% if r.project %}{{ r.project }}{% endif %} {% if r.severity %} {{ r.severity }} {% endif %} {% if r.confidence is not none %} {{ (r.confidence * 100) | round | int }}% {% endif %}
{% if r.tags %}
{% for tag in r.tags %} {{ tag }} {% endfor %}
{% endif %} {% if r.example or r.rationale %}
Details {% if r.example %}
Example: {{ r.example }}
{% endif %} {% if r.rationale %}
Rationale: {{ r.rationale }}
{% endif %}
{% endif %}
{% if not r.is_active %} inactive {% endif %}
{% endfor %}
{% set total_pages = ((total + page_size - 1) // page_size) %} {% if total_pages > 1 %}
{% for p in range(1, total_pages + 1) %} {% if p <= 5 or p == total_pages or (p >= page - 1 and p <= page + 1) %} {% endif %} {% endfor %}
{% endif %} {% else %}
No records match the current filters.
{% endif %}