{{ 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 %}