{% extends "admin/base_site.html" %} {% load static %} {% block title %}Files Without Metadata{% endblock %} {% block content %}

Files Without Metadata

Summary Statistics

Total without metadata: {{ total_without_metadata }}
Images: {{ images_without_metadata }}
Videos: {{ videos_without_metadata }}
Audio: {{ audio_without_metadata }}

Filter by Type

All | Images | Videos | Audio

{% if current_filter %}

Currently filtering: {{ current_filter }}

{% endif %}
{% for file in files %} {% empty %} {% endfor %}
SHA512 (first 10) MIME Type Size First Seen Paths Posts Actions
{{ file.sha512|slice:":10" }}... {{ file.mime_type|default:"Unknown" }} {{ file.size|filesizeformat }} {{ file.first_seen|date:"Y-m-d H:i" }} {% for filepath in file.filepath_set.all|slice:":3" %} {{ filepath.path|truncatechars:50 }}
{% empty %} No paths recorded {% endfor %} {% if file.filepath_set.count > 3 %} ... and {{ file.filepath_set.count|add:"-3" }} more {% endif %}
{% if file.postfile_set.exists %} PostFile: {{ file.postfile_set.count }}
{% endif %} {% if file.postimage_set.exists %} PostImage: {{ file.postimage_set.count }}
{% endif %} {% if file.postvideo_set.exists %} PostVideo: {{ file.postvideo_set.count }}
{% endif %} {% if file.postaudio_set.exists %} PostAudio: {{ file.postaudio_set.count }}
{% endif %} {% if file.postfile_set.first %} Source: {{ file.postfile_set.first.post.source.name }}
URL: Original
{% elif file.postimage_set.first %} Source: {{ file.postimage_set.first.post.source.name }}
URL: Original
{% elif file.postvideo_set.first %} Source: {{ file.postvideo_set.first.post.source.name }}
URL: Original
{% endif %}
Admin | Media
No files without metadata found.
{% if is_paginated %}
{% if page_obj.has_previous %} « first previous {% endif %} Page {{ page_obj.number }} of {{ page_obj.paginator.num_pages }} {% if page_obj.has_next %} next last » {% endif %}
{% endif %}
{% endblock %}