{% extends "admin/base.html" %} {% set title = 'Feature Manager' %} {% block title %}{{ page_title(title) }}{% endblock %} {% block bodyattrs %} data-collections-url="{{ url('zadmin.collections_json') }}" data-featured-collection-url="{{ url('zadmin.featured_collection') }}" {% endblock %} {% macro fc(form) %} {% set app_id = form.application.value()|int %} {% set app = amo.APPS_ALL.get(app_id, '') %} {% set collection_id = form.collection.value() %} {{ form.id }} {{ form.application }} {{ form.application.errors }} {{ form.locale }} {{ form.locale.errors }}
{{ form.collection }} {{ form.collection.errors }} {{ form.DELETE }}{{ form.DELETE.label_tag() }} × {% endmacro %} {% block content %}

{{ title }}

{{ csrf() }} {{ form.non_form_errors() }} {{ form.management_form }} {% for form in form.forms %} {{ fc(form) }} {% endfor %} {{ fc(form.empty_form) }}
Application Locale Collection Delete

Add a Featured Collection

or Cancel

{% endblock %}