From 972dcfcdbfe75dcfeb777150c136576cf1a71e99 Mon Sep 17 00:00:00 2001 From: Tudor Florea Date: Fri, 9 Oct 2015 22:59:03 +0200 Subject: initial commit for Enea Linux 5.0 arm Signed-off-by: Tudor Florea --- .../lib/toaster/toastergui/templates/recipes.html | 110 +++++++++++++++++++++ 1 file changed, 110 insertions(+) create mode 100644 bitbake/lib/toaster/toastergui/templates/recipes.html (limited to 'bitbake/lib/toaster/toastergui/templates/recipes.html') diff --git a/bitbake/lib/toaster/toastergui/templates/recipes.html b/bitbake/lib/toaster/toastergui/templates/recipes.html new file mode 100644 index 0000000000..791a487a81 --- /dev/null +++ b/bitbake/lib/toaster/toastergui/templates/recipes.html @@ -0,0 +1,110 @@ +{% 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}} + + {{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 %} -- cgit v1.2.3-54-g00ecf