mirror of
https://git.yoctoproject.org/poky
synced 2026-04-30 12:32:12 +02:00
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>
15 lines
481 B
HTML
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%}
|