From aa9816ad79ca34000c1cb0cdc4d35b5fc09a9ba3 Mon Sep 17 00:00:00 2001 From: Alexandru DAMIAN Date: Fri, 5 Dec 2014 15:19:55 +0000 Subject: bitbake: toastergui: implement UI changes to allow file download This patchset adds download links in the build analisys pages if toaster runs in managed mode. This allows the user to access data directly from the web interface. [YOCTO #6837] (Bitbake rev: 6000e1ae5c846e51932ecd0dc21e0fa02eb10357) Signed-off-by: Alexandru DAMIAN Signed-off-by: Richard Purdie --- bitbake/lib/toaster/toastergui/templates/configuration.html | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'bitbake/lib/toaster/toastergui/templates/configuration.html') diff --git a/bitbake/lib/toaster/toastergui/templates/configuration.html b/bitbake/lib/toaster/toastergui/templates/configuration.html index 49a6a89d5c..d3b34a2096 100644 --- a/bitbake/lib/toaster/toastergui/templates/configuration.html +++ b/bitbake/lib/toaster/toastergui/templates/configuration.html @@ -50,7 +50,9 @@ Layer Layer branch Layer commit - Layer directory + {% if not MANAGED or not build.project %} + Layer directory + {% endif %} {% for lv in build.layer_version_build.all|dictsort:"layer.name" %} @@ -61,7 +63,9 @@
  • {{lv.commit}}
  • "> {{lv.commit|truncatechars:13}} + {% if not MANAGED or not build.project %} {{lv.layer.local_path}} + {% endif %} {% endfor %} -- cgit v1.2.3-54-g00ecf