{% extends "base.html" %} {% load i18n %} {% comment %} layerindex-web - bulk change page template Copyright (C) 2013 Intel Corporation Licensed under the MIT license, see COPYING.MIT for details {% endcomment %} {% block content %} {% autoescape on %}

Bulk change

This tool allows you to update the value of "meta" variables (such as DESCRIPTION and LICENSE) on more than one recipe at once, and then generate a patch for these changes which can be submitted for merging.

To get started, your changes will need to be associated with a changeset.

{% if changesets %}

Select an existing changeset

{% endif %}

Create a new changeset

{% csrf_token %} {% for hidden in form.hidden_fields %} {{ hidden }} {% endfor %} {% for field in form.visible_fields %} {% if field.errors %}
{{ field.errors }} {% endif %}
{{ field.label_tag }} {{ field }} {{ field.help_text }} {% if field.errors %}
{% endif %}
{% endfor %}
{% endautoescape %} {% endblock %}