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/layers.html | 178 +++++++++++++++++++++ 1 file changed, 178 insertions(+) create mode 100644 bitbake/lib/toaster/toastergui/templates/layers.html (limited to 'bitbake/lib/toaster/toastergui/templates/layers.html') diff --git a/bitbake/lib/toaster/toastergui/templates/layers.html b/bitbake/lib/toaster/toastergui/templates/layers.html new file mode 100644 index 0000000000..281b72aec5 --- /dev/null +++ b/bitbake/lib/toaster/toastergui/templates/layers.html @@ -0,0 +1,178 @@ +{% extends "baseprojectpage.html" %} +{% load projecttags %} +{% load humanize %} + +{% block localbreadcrumb %} +
  • Layers
  • +{% endblock %} + +{% block projectinfomain %} + + + + + + +{% include "basetable_top.html" %} + {% for lv in objects %} + + {{lv.layer.name}} + {{lv.layer.summary}} + {{lv.layer_source.name}} + {{lv.layer.layer_index_url}} + {{lv.dirpath}} + {% if lv.branch %}{{lv.branch}}{% else %}{{lv.up_branch.name}}{% endif %} + {% for lvs in lv.dependencies.all %}{{lvs.layer.name}}
    {%endfor%} + + + + + + {% endfor %} +{% include "basetable_bottom.html" %} + + + + + + + + + + + + + + + + +{% endblock %} -- cgit v1.2.3-54-g00ecf