summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/toaster/toastergui/templates/build.html
diff options
context:
space:
mode:
authorAlexandru DAMIAN <alexandru.damian@intel.com>2014-03-20 11:44:19 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2014-03-25 11:17:32 +0000
commit604d2c8df30b0139704991703b99ae9039c0f342 (patch)
treeeb5dd547e7b2b64a70adb9d1e9988ee292a17d17 /bitbake/lib/toaster/toastergui/templates/build.html
parent888ceb12522e19e30759acc67336f010b63ad864 (diff)
downloadpoky-604d2c8df30b0139704991703b99ae9039c0f342.tar.gz
bitbake: toaster: Revert "added file types to the Outputs column in the build page"
This reverts commit d40ac966b22e1fa1956d8f2fe37fd55fa670e88f. Sloppy review on my part let the original patch in, when it should've been rejected because the filter tags should have no knowledge of the object system. (Bitbake rev: 7e59b6b1cb44de00c512facece5ede96375a411f) Signed-off-by: Alexandru DAMIAN <alexandru.damian@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/toaster/toastergui/templates/build.html')
-rw-r--r--bitbake/lib/toaster/toastergui/templates/build.html6
1 files changed, 1 insertions, 5 deletions
diff --git a/bitbake/lib/toaster/toastergui/templates/build.html b/bitbake/lib/toaster/toastergui/templates/build.html
index 1c94e7c8f9..8f557e9686 100644
--- a/bitbake/lib/toaster/toastergui/templates/build.html
+++ b/bitbake/lib/toaster/toastergui/templates/build.html
@@ -92,11 +92,7 @@
92 <td class="warnings_no">{% if build.warnings_no %}<a class="warnings_no warning" href="{% url "builddashboard" build.id %}#warnings">{{build.warnings_no}} warning{{build.warnings_no|pluralize}}</a>{%endif%}</td> 92 <td class="warnings_no">{% if build.warnings_no %}<a class="warnings_no warning" href="{% url "builddashboard" build.id %}#warnings">{{build.warnings_no}} warning{{build.warnings_no|pluralize}}</a>{%endif%}</td>
93 <td class="time"><a href="{% url "buildtime" build.id %}">{{build.timespent|sectohms}}</a></td> 93 <td class="time"><a href="{% url "buildtime" build.id %}">{{build.timespent|sectohms}}</a></td>
94 <td class="log">{{build.cooker_log_path}}</td> 94 <td class="log">{{build.cooker_log_path}}</td>
95 <td class="output"> 95 <td class="output">{% if build.outcome == 0 %}{% for t in build.target_set.all %}{% if t.is_image %}<a href="{%url "builddashboard" build.id%}#images">TODO: compute image output fstypes</a>{% endif %}{% endfor %}{% endif %}</td>
96 {% if build.outcome == 0 %}
97 {{build|get_image_extensions}}
98 {% endif %}
99 </td>
100 </tr> 96 </tr>
101 97
102 {% endfor %} 98 {% endfor %}