Files
poky/bitbake/lib/toaster/toastergui/templates/basetable_top_buildprojects.html
Alexandru DAMIAN c362e61ee2 bitbake: toaster: remove MANAGED references
We conflate the managed and analysis modes by
deleting alternative code paths, favouring the MANAGED mode,
always considering the MANAGED variable True.

(Bitbake rev: 0ac02d3775106b485e29496b62f31e91fd3f9387)

Signed-off-by: Alexandru DAMIAN <alexandru.damian@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2015-06-26 09:27:31 +01:00

15 lines
481 B
HTML

{% extends "basetable_top.html" %}
{%block custombuttons %}
<div class="btn-group builds-projects">
<button class="btn dropdown-toggle" data-toggle="dropdown">
<span class="selection">Show all builds</span>
<i class="icon-caret-down"></i>
</button>
<ul class="dropdown-menu">
<li><a href="{% url 'all-builds'%}">Show all builds</a></li>
<li><a href="{% url 'all-projects'%}">Show all projects</a></li>
</ul>
</div>
{%endblock%}