From c527fd1f14c27855a37f2e8ac5346ce8d940ced2 Mon Sep 17 00:00:00 2001 From: Tudor Florea Date: Thu, 16 Oct 2014 03:05:19 +0200 Subject: initial commit for Enea Linux 4.0-140929 Migrated from the internal git server on the daisy-enea-point-release branch Signed-off-by: Tudor Florea --- .../lib/toaster/toastergui/templates/recipes.html | 102 +++++++++++++++++++++ 1 file changed, 102 insertions(+) create mode 100755 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 100755 index 0000000000..907b83d269 --- /dev/null +++ b/bitbake/lib/toaster/toastergui/templates/recipes.html @@ -0,0 +1,102 @@ +{% 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="
      + {% for i in recipe.r_dependencies_recipe.all|dictsort:"depends_on.name"%} +
    • {{i.depends_on.name}}
    • + {% endfor %} +
    "> + {{recipe.r_dependencies_recipe.all.count}} + + {% endif %} + + + + {% if recipe.r_dependencies_depends.all.count %} + {{recipe.name}} reverse dependencies" + data-content="
      + {% for i in recipe.r_dependencies_depends.all|dictsort:"recipe.name"%} +
    • {{i.recipe.name}}
    • + {% endfor %} +
    "> + {{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 %} -- cgit v1.2.3-54-g00ecf