{% 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}} {% if recipe.r_dependencies_recipe.all.count %} {{recipe.name}} dependencies" data-content=""> {{recipe.r_dependencies_recipe.all.count}} {% endif %} {% if recipe.r_dependencies_depends.all.count %} {{recipe.name}} reverse dependencies" data-content=""> {{recipe.r_dependencies_depends.all.count}} {% endif %} {{recipe.file_path}} {{recipe.section}} {{recipe.license}} {{recipe.layer_version.layer.name}} {{recipe.layer_version.branch}} {{recipe.layer_version.commit|truncatechars:13}} {{recipe.layer_version.layer.local_path}} {% endfor %} {% include "basetable_bottom.html" %} {% endif %}
    {% endblock %}