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

Add recipes to changeset

{{ search_form.field.errors }} {{ search_form.match_type.errors }} {{ search_form.value.errors }}
Field: {{ search_form.field }} {{ search_form.match_type }} {{ search_form.value }}
{{ search_form.layer.errors }}
Layer: {{ search_form.layer }}
{% if recipe_list %}
{% csrf_token %} {% for recipe in recipe_list %} {% endfor %}
Recipe name Version Description Layer
{{ recipe.name }} {{ recipe.pv }} {{ recipe.short_desc }} {{ recipe.layerbranch.layer.name }}
{% if is_paginated %} {% comment %} {% load bootstrap_pagination %}
{% bootstrap_paginate page_obj range=10 show_prev_next="false" show_first_last="true" %}
{% endcomment %} {% endif %} {% else %} {% if searched %}

No matching recipes in database.

{% endif %} {% endif %}
{% if changeset %}

{{ changeset.name }}

{% if changeset.recipechange_set.all %} {% regroup changeset.recipechange_set.all by recipe.layerbranch.layer as changeset_recipes %}
    {% for layer in changeset_recipes %}
  • {{ layer.grouper }}
      {% for change in layer.list %}
    • {{ change.recipe.filename }}
    • {% endfor %}
  • {% endfor %}
Edit {% endif %} Delete
{% endif %}
{% endautoescape %} {% endblock %} {% block scripts %} {% endblock %}