{% extends "base.html" %} {% load i18n %} {% comment %} layerindex-web - recipe index page template Copyright (C) 2013 Intel Corporation Licensed under the MIT license, see COPYING.MIT for details {% endcomment %} {% block content %} {% autoescape on %}
{% if recipe_list %} {% 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 %} {% load pagination %} {% pagination page_obj %} {% endif %} {% else %} {% if search_keyword %}

No matching recipes in database.

{% endif %} {% endif %}
{% endautoescape %} {% endblock %}