{% extends "base.html" %} {% load i18n %} {% comment %} layerindex-web - recipe detail page template Copyright (C) 2013 Intel Corporation Licensed under the MIT license, see COPYING.MIT for details {% endcomment %} {% block content %} {% autoescape on %}
NOTE: This recipe is for OE-Classic, the older monolithic version of OpenEmbedded which is no longer actively developed. See below for migration information. If no replacement is available in current OpenEmbedded layers, you may be able to migrate the recipe yourself.
{% if recipe.bugtracker %} {% endif %}
Name {{ recipe.name }}
Version {{ recipe.pv }}
Summary {{ recipe.summary }}
Description {{ recipe.description }}
Section {{ recipe.section }}
License {{ recipe.license }}*
Homepage {% if recipe.homepage %}{{ recipe.homepage }}{% endif %}
Bug tracker {{ recipe.bugtracker }}
Recipe file {% if recipe.vcs_web_url %} {{ recipe.full_path }} {% else %} {{ recipe.full_path }} {% endif %}

* - in OE-Classic, some of the license values were not accurate. Please refer to current recipes (if available) for this information.

Migration information

{% if can_edit %}
{% csrf_token %} {% for hidden in form.hidden_fields %} {{ hidden }} {% endfor %} Coverage {{ form.cover_status }} by {{ form.cover_pn }} in {{ form.cover_layerbranch }}

{% else %}
Coverage {{ recipe.get_cover_desc }}
Categories {{ recipe.classic_category }}
{% endif %}
{% endautoescape %} {% endblock %} {% block scripts %} {% endblock %}