{% extends "admin/base.html" %} {% block title %}{{ page_title('Manage {0}')|f(addon.name) }}{% endblock %} {% block content %}

Manage {{ addon.name }}

Public Listing | Edit Add-on

{{ form.status }}
{{ form.highest_status }}
{{ form.outstanding }}

{% if versions %}

Versions & Files

{% for v in versions %} {% with files = file_map.get(v.id, []) %} {% if files %} {% for file in files %} {% if not loop.first %} {% endfor %} {% else %} {% endif %} {% endwith %} {% endfor %}
Date Version ID File ID Platform Status Hash Copied
{{ v.created|datetime }} {{ v.id }}
{% endif %} {{ file.id }} {{ file.platform }} {{ form_map[file.id].status }} {% for hidden in form_map[file.id].hidden_fields() %} {{ hidden }} {% endfor %} Recalc Hash {% if file.is_mirrorable() %} {{ "Copied" if file.has_been_copied() else "Not Copied" }} {% endif %}
{% endif %}

{{ formset.management_form }} {{ csrf() }} {% if pager.paginator.num_pages > 1 %} {% endif %}
{% endblock %}