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

Recipe dependencies

{% for hidden in form.hidden_fields %} {{ hidden }} {% endfor %} {% for field in form.visible_fields %} {% if field.name in form.errors %}
{{ field.errors }} {% else %}
{% endif %} {% if field.name == "crosslayer" %}
{% else %}
{{ field.label_tag }}
{{ field }}
{% endif %}

{{ field.help_text|safe }}

{% endfor %}
{% if recipes %} {% for recipe in recipes %} {% with len=recipe.deps|length %} {% for dep in recipe.deps %} {% if forloop.first %} {% endif %} {% endfor %} {% endwith %} {% endfor %}
Recipe License Dependency Version - {{ branch }} License Layer
{{ recipe.pn }} {{ recipe.license }}{% if dep.pn != dep.depname %}{{ dep.depname }}: {% endif %}{% if dep.id > -1 %}{% endif %}{{ dep.pn }}{% if dep.id > -1 %}{% endif %}{% if dep.dynamic %} optional{% endif %} {{ dep.pv }} {{ dep.license }} {{ dep.layer }}
{% elif branch %}

No matching recipes in database.

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