{% extends "basebuildpage.html" %} {% load projecttags %} {% block localbreadcrumb %}
  • Recipes
  • {% endblock %} {% block nav-recipes %}
  • Recipes
  • {% endblock %} {% block buildinfomain %}
    {% if objects.paginator.count == 0 %}
    {% if request.GET.search %}{% endif %}
    {% else %} {% include "basetable_top.html" %} {% for recipe in objects %} {{recipe.name}} {{recipe.version}} {% with deps=recipe_deps|get_dict_value:recipe.pk %} {% with count=deps|length %} {% if count %} {{recipe.name}} dependencies" data-content=""> {{count}} {% endif %} {% endwith %} {% endwith %} {% with revs=recipe_revs|get_dict_value:recipe.pk %} {% with count=revs|length %} {% if count %} {{recipe.name}} reverse dependencies" data-content=""> {{count}} {% endif %} {% endwith %} {% endwith %} {{recipe.file_path}} {% if recipe.pathflags %}({{recipe.pathflags}}){% endif %} {{recipe.section}} {{recipe.license}} {{recipe.layer_version.layer.name}} {{recipe.layer_version.branch}} {{recipe.layer_version.commit|truncatechars:13}} {% endfor %} {% include "basetable_bottom.html" %} {% endif %}
    {% endblock %}