mirror of
https://git.yoctoproject.org/git/poky
synced 2026-01-01 13:58:04 +00:00
bitbake: toaster: Hide top bar buttons in analysis mode
The "new build" and "new project" buttons are irrelevant in analysis mode, as you can't start a build or a project. Hide these buttons if not in BUILD_MODE. [YOCTO #8514] (Bitbake rev: b1858653c22eb6d51fc23f75ccad69b76523eb41) Signed-off-by: Elliot Smith <elliot.smith@intel.com> Signed-off-by: brian avery <avery.brian@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
parent
1ec2ec3429
commit
a580479452
|
|
@ -120,11 +120,19 @@
|
|||
</li>
|
||||
</ul>
|
||||
<span class="pull-right divider-vertical"></span>
|
||||
<div class="btn-group pull-right">
|
||||
<a class="btn" id="new-project-button" href="{% url 'newproject' %}">New project</a>
|
||||
</div>
|
||||
<!-- New build popover; only shown if there is at least one user-created project -->
|
||||
{% if non_cli_projects.count > 0 %}
|
||||
|
||||
<!-- new project button; only show in build mode -->
|
||||
{% if BUILD_MODE %}
|
||||
<div class="btn-group pull-right">
|
||||
<a class="btn" id="new-project-button" href="{% url 'newproject' %}">New project</a>
|
||||
</div>
|
||||
{% endif %}
|
||||
|
||||
<!--
|
||||
New build popover; only shown if there is at least one user-created project
|
||||
and we're in build mode
|
||||
-->
|
||||
{% if BUILD_MODE and non_cli_projects.count > 0 %}
|
||||
<div class="btn-group pull-right" id="new-build-button" style="display:none">
|
||||
<button class="btn dropdown-toggle" data-toggle="dropdown">
|
||||
New build
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user