{% extends "base.html" %} {% block content %}

Cases


{% include 'analyses/report/_dashboard.html' %}
{% include 'analyses/report/_static.html' %}
{% if anal.metadata.Exif %}
{% include 'analyses/report/_exif.html' %}
{% endif %} {% if anal.metadata.Iptc %}
{% include 'analyses/report/_iptc.html' %}
{% endif %} {% if anal.metadata.Xmp %}
{% include 'analyses/report/_xmp.html' %}
{% endif %} {% if anal.metadata.preview and anal.metadata.preview|length > 0 %}
{% include 'analyses/report/_previews.html' %}
{% endif %} {% if anal.metadata.gps %}
{% include 'analyses/report/_map.html' %}
{% endif %} {% if anal.ela %}
{% include 'analyses/report/_ela.html' %}
{% endif %} {% if anal.signatures and anal.signatures|length > 0 %}
{% include 'analyses/report/_signature.html' %}
{% endif %}
{% endblock %}