summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/toaster/toastergui/templates/managed_builds.html
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/toaster/toastergui/templates/managed_builds.html')
-rw-r--r--bitbake/lib/toaster/toastergui/templates/managed_builds.html22
1 files changed, 12 insertions, 10 deletions
diff --git a/bitbake/lib/toaster/toastergui/templates/managed_builds.html b/bitbake/lib/toaster/toastergui/templates/managed_builds.html
index a4db55b967..e23b832bae 100644
--- a/bitbake/lib/toaster/toastergui/templates/managed_builds.html
+++ b/bitbake/lib/toaster/toastergui/templates/managed_builds.html
@@ -56,6 +56,13 @@
56 </td> 56 </td>
57 <td class="target">{% for t in build.target_set.all %} <a href="{% url "builddashboard" build.id %}"> {{t.target}} </a> <br />{% endfor %}</td> 57 <td class="target">{% for t in build.target_set.all %} <a href="{% url "builddashboard" build.id %}"> {{t.target}} </a> <br />{% endfor %}</td>
58 <td class="machine"><a href="{% url "builddashboard" build.id %}">{{build.machine}}</a></td> 58 <td class="machine"><a href="{% url "builddashboard" build.id %}">{{build.machine}}</a></td>
59 {% if MANAGED %}
60 <td class="project">
61 {% if build.project %}
62 <a href="{% url 'project' build.project.id %}">{{build.project.name}}</a>
63 {% endif %}
64 </td>
65 {% endif %}
59 <td class="started_on"><a href="{% url "builddashboard" build.id %}">{{build.started_on|date:"d/m/y H:i"}}</a></td> 66 <td class="started_on"><a href="{% url "builddashboard" build.id %}">{{build.started_on|date:"d/m/y H:i"}}</a></td>
60 <td class="completed_on"><a href="{% url "builddashboard" build.id %}">{{build.completed_on|date:"d/m/y H:i"}}</a></td> 67 <td class="completed_on"><a href="{% url "builddashboard" build.id %}">{{build.completed_on|date:"d/m/y H:i"}}</a></td>
61 <td class="failed_tasks error"> 68 <td class="failed_tasks error">
@@ -91,13 +98,6 @@
91 <a href="{%url "builddashboard" build.id%}#images">{{fstypes|get_dict_value:build.id}}</a> 98 <a href="{%url "builddashboard" build.id%}#images">{{fstypes|get_dict_value:build.id}}</a>
92 {% endif %} 99 {% endif %}
93 </td> 100 </td>
94 {% if MANAGED %}
95 <td class="project">
96 {% if build.project %}
97 <a href="{% url 'project' build.project.id %}">{{build.project.name}}</a>
98 {% endif %}
99 </td>
100 {% endif %}
101 </tr> 101 </tr>
102 102
103 103
@@ -114,6 +114,11 @@
114 <td class="machine"> 114 <td class="machine">
115 <a href="{% url "buildrequestdetails" buildrequest.project.id buildrequest.id %}">{{buildrequest.machine}}</a> 115 <a href="{% url "buildrequestdetails" buildrequest.project.id buildrequest.id %}">{{buildrequest.machine}}</a>
116 </td> 116 </td>
117 {% if MANAGED %}
118 <td class="project">
119 <a href="{% url 'project' buildrequest.project.id %}">{{buildrequest.project.name}}</a>
120 </td>
121 {% endif %}
117 <td class="started_on"> 122 <td class="started_on">
118 <a href="{% url "buildrequestdetails" buildrequest.project.id buildrequest.id %}">{{buildrequest.created|date:"d/m/y H:i"}}</a> 123 <a href="{% url "buildrequestdetails" buildrequest.project.id buildrequest.id %}">{{buildrequest.created|date:"d/m/y H:i"}}</a>
119 </td> 124 </td>
@@ -132,9 +137,6 @@
132 </td> 137 </td>
133 <td class="output"> {# we have no output here #} 138 <td class="output"> {# we have no output here #}
134 </td> 139 </td>
135 <td class="project">
136 <a href="{% url 'project' buildrequest.project.id %}">{{buildrequest.project.name}}</a>
137 </td>
138 </tr> 140 </tr>
139 {%endif%} 141 {%endif%}
140 {% endfor %} 142 {% endfor %}