{% if held_uploads.is_empty() %}
No uploads pending review.
{% else %}
{% for upload in held_uploads %} {% endfor %}
Creator Item Type Held Layers Actions
{{ upload.creator_username }} {% if upload.creator_trusted %} (trusted) {% endif %} {{ upload.item_title }} {% if let Some(vn) = upload.version_number %} v{{ vn }} {% endif %} {{ upload.upload_type }} {{ upload.held_at }} {% if let Some(la) = upload.last_action %}
last: {{ la.action }} by {{ la.admin_username }} {{ la.when }}
{% endif %}
{% if upload.layers.is_empty() %} no scan record {% else %}
{% for chip in upload.layers %} {{ chip.layer }} {% endfor %}
scan detail
{% for chip in upload.layers %}
{{ chip.layer }} — {{ chip.verdict }}
{% if let Some(d) = chip.detail %}{{ d }}{% else %}no detail{% endif %}
{% endfor %}
{% endif %}
{% if let Some(vid) = upload.version_id %} {% else %} {% endif %} {% if !upload.creator_trusted %} {% endif %}
{% endif %}