{% extends "_base.html" %} {% block title %}Findings · {{ project.name | humanize }} · Urika{% endblock %} {% block heading %}Findings{% endblock %} {% block breadcrumb %} {% endblock %} {# -- Helpers ---------------------------------------------------------- #} {# Render a single value (string, list, or dict) without ever emitting raw JSON. Used by the "More" block for unknown keys. #} {% macro render_value(value) -%} {% if value is mapping -%}
{{ value }}
{%- endif %} {%- endmacro %} {% macro humanise(key) -%} {{ key.replace('_', ' ') | capitalize }} {%- endmacro %} {% block content %} {# -- Question (italic lead) --------------------------------------------- #} {% if findings.question %}{{ findings.criteria_status.details }}
{% endif %}{{ findings.progression }}
| ID | Focus | Key finding |
|---|---|---|
{{ e.id }} |
{{ e.focus }} | {{ e.key_finding }} |