{% from "devhub/addons/listing/macros.html" import dev_heading, dev_item_info %} {% set collection = collection or None %} {% set username = request.user.username if request.user.is_authenticated() else '' %} {% for addon in addons %}
{{ dev_heading(addon, amo) }} {% if addon.is_incomplete() and addon.status == amo.STATUS_NULL %}

{% trans %} This add-on will be deleted automatically after a few days if the submission process is not completed. {% endtrans %}

{% else %}
{{ dev_item_info(addon, amo) }}
{% endif %}
{% if addon.is_persona() %} {% include "devhub/addons/listing/item_actions_theme.html" %} {% else %} {% include "devhub/addons/listing/item_actions.html" %} {% endif %}
{% endfor %}