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

Cases

{% if analysis.thumb_id %} {% else %} {% endif %}

Image analysis: {{ analysis.report.hash.md5 }}

{% if analysis.favorites.all %} {% else %} {% endif %}

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

    {% for tag in analysis.tag_set.all %}
  • {{ tag.text }}
  • {% endfor %}
{% if analysis.comments.all %}

Comments

{% for comment in analysis.comments.all %} {% endfor %}

{{ comment.owner.username }} {{ comment.created_at }}

Delete

{{ comment.message }}
{% endif %}
{% csrf_token %}
{# CSS #} {# JS #}
{% include "layout/_modalActionCase.html" %} {% endblock %}