summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/toaster/toastergui/templates/basebuilddetailpage.html
diff options
context:
space:
mode:
authorTudor Florea <tudor.florea@enea.com>2014-10-16 03:05:19 +0200
committerTudor Florea <tudor.florea@enea.com>2014-10-16 03:05:19 +0200
commitc527fd1f14c27855a37f2e8ac5346ce8d940ced2 (patch)
treebb002c1fdf011c41dbd2f0927bed23ecb5f83c97 /bitbake/lib/toaster/toastergui/templates/basebuilddetailpage.html
downloadpoky-c527fd1f14c27855a37f2e8ac5346ce8d940ced2.tar.gz
initial commit for Enea Linux 4.0-140929daisy-140929
Migrated from the internal git server on the daisy-enea-point-release branch Signed-off-by: Tudor Florea <tudor.florea@enea.com>
Diffstat (limited to 'bitbake/lib/toaster/toastergui/templates/basebuilddetailpage.html')
-rwxr-xr-xbitbake/lib/toaster/toastergui/templates/basebuilddetailpage.html28
1 files changed, 28 insertions, 0 deletions
diff --git a/bitbake/lib/toaster/toastergui/templates/basebuilddetailpage.html b/bitbake/lib/toaster/toastergui/templates/basebuilddetailpage.html
new file mode 100755
index 0000000000..5149768517
--- /dev/null
+++ b/bitbake/lib/toaster/toastergui/templates/basebuilddetailpage.html
@@ -0,0 +1,28 @@
1{% extends "base.html" %}
2{% load humanize %}
3{% block pagecontent %}
4
5<div class="row-fluid">
6<!-- Breadcrumbs -->
7 <div class="section">
8 <ul class="breadcrumb" id="breadcrumb">
9 <li><a href="{% url 'all-builds' %}">All builds</a></li>
10 <li><a href="{%url 'builddashboard' build.pk%}">{{build.target_set.all.0.target}} {%if build.target_set.all.count > 1%}(+ {{build.target_set.all.count|add:"-1"}}){%endif%} {{build.machine}} ({{build.completed_on|date:"d/m/y H:i"}})</a></li>
11 {% block localbreadcrumb %}{% endblock %}
12 </ul>
13 <script>
14 $( function () {
15 $('#breadcrumb > li').append("<span class=\"divider\">→</span>");
16 $('#breadcrumb > li:last').addClass("active");
17 $('#breadcrumb > li:last > span').remove();
18 });
19 </script>
20 </div> <!--section-->
21
22 <!-- Begin container -->
23 {% block pagedetailinfomain %}{% endblock %}
24 <!-- End container -->
25
26</div>
27
28{% endblock %}