summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/toaster/toastergui/templates/landing.html
diff options
context:
space:
mode:
authorEd Bartosh <ed.bartosh@linux.intel.com>2015-12-02 10:02:50 -0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-12-07 17:37:10 +0000
commit4c1e5ec29ace325d03a5a1386e384201a00f15cf (patch)
treeeafadc88924ac99464de68d1ab2108808cec41d0 /bitbake/lib/toaster/toastergui/templates/landing.html
parent990289511b7dc56580f2cecdda75fa14f436966d (diff)
downloadpoky-4c1e5ec29ace325d03a5a1386e384201a00f15cf.tar.gz
bitbake: toaster: remove usage of BUILD_MODE variable
As both modes can be used at the same time we can't have any difference in UI between modes. Removed all conditional statements that used BUILD_MODE. (Bitbake rev: 4ce1559c2558bd0fd278ff02a1a93bec03c4156b) Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com> Signed-off-by: brian avery <avery.brian@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/toaster/toastergui/templates/landing.html')
-rw-r--r--bitbake/lib/toaster/toastergui/templates/landing.html10
1 files changed, 0 insertions, 10 deletions
diff --git a/bitbake/lib/toaster/toastergui/templates/landing.html b/bitbake/lib/toaster/toastergui/templates/landing.html
index cafaa1afad..a1b5cdce75 100644
--- a/bitbake/lib/toaster/toastergui/templates/landing.html
+++ b/bitbake/lib/toaster/toastergui/templates/landing.html
@@ -6,9 +6,6 @@
6 6
7{% block title %} Welcome to Toaster {% endblock %} 7{% block title %} Welcome to Toaster {% endblock %}
8{% block pagecontent %} 8{% block pagecontent %}
9
10 {% if BUILD_MODE %}
11 <!-- build mode -->
12 <div class="container-fluid"> 9 <div class="container-fluid">
13 <div class="row-fluid"> 10 <div class="row-fluid">
14 <div class="hero-unit span12 well-transparent"> 11 <div class="hero-unit span12 well-transparent">
@@ -62,11 +59,4 @@
62 </div> 59 </div>
63 </div> 60 </div>
64 </div> 61 </div>
65 {% else %}
66 <!-- analysis mode -->
67 <div class="alert alert-info lead top-air">
68 Toaster has not recorded any builds yet. Run a build from the command line to see it here.
69 </div>
70 {% endif %}
71
72{% endblock %} 62{% endblock %}