{% extends "base.html" %} {% block title %}Single finding - {{ finding.get("name") }}{% endblock %} {% block content %}

Single finding


{{ finding.get("name") }}

Show safely | Show with better formatting
{% for attr_name, attr_value in finding.items() %}

{{ attr_name }}

{% if attr_value is iterable and (attr_value is not string and attr_value is not mapping) %} {# isinstance(x, list) #} {% else %} {% if outputSafely %} {{ attr_value }} {% else %} {{ attr_value | safe }} {% endif %} {% endif %}
{% endfor %} {% endblock %}