{% 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 %}
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 %}
Recipe file {% if recipe.vcs_web_url %} {{ recipe.full_path }} {% else %} {{ recipe.full_path }} {% endif %}
Layer {{ recipe.layer.name }}
{% endautoescape %} {% endblock %}