{% extends "base.html" %} {% load i18n %} {% load static %} {% comment %} layerindex-web - branch comparison page template Copyright (C) 2019 Intel Corporation Licensed under the MIT license, see COPYING.MIT for details {% endcomment %} {% block content %} {% autoescape on %}
{{ form }} Filter layers {{ showlayers|length }}

Branch recipe comparison

{% if added or changed or removed %}

Added

{% for recipe in added %} {% endfor %}
Recipe Description Version - {{ to_branch }}
{{ recipe.pn }} {{ recipe.short_desc }} {% for rv in recipe.to_versions %}{{ rv.pv }}{% if not forloop.last %}, {% endif %}{% endfor %}

Changed

{% for recipe in changed %} {% with pv_changed=recipe.pv_changed %} {% endwith %} {% endfor %}
Recipe Description Version - {{ from_branch }} Version - {{ to_branch }}
{{ recipe.pn }} {{ recipe.short_desc }} {% for rv in recipe.from_versions %}{{ rv.pv }}{% if rv.srcrev and not pv_changed %} ({{ rv.srcrev|truncatechars:13 }}){% endif %}{% if not forloop.last %}, {% endif %}{% endfor %} {% for rv in recipe.to_versions %}{{ rv.pv }}{% if rv.srcrev and not pv_changed %} ({{ rv.srcrev|truncatechars:13 }}){% endif %}{% if not forloop.last %}, {% endif %}{% endfor %}

Removed

{% for recipe in removed %} {% endfor %}
Recipe Description
{{ recipe.pn }} {{ recipe.short_desc }}
{% elif from_branch and to_branch %}

No matching recipes in database.

{% else %}

Select some parameters above to begin comparison.

{% endif %}
Plain text {% endautoescape %} {% endblock %} {% block scripts %} {% endblock %}