summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/toaster/toastergui/templates/landing_not_managed.html
diff options
context:
space:
mode:
authorDavid Reyna <David.Reyna@windriver.com>2015-02-17 21:54:15 -0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-02-20 12:58:19 +0000
commit64fc177299149376978a9e89eddcf0a9dc846a7e (patch)
treeaa5b2a639e19718d9cd416b9a8accb5f1b2b9c71 /bitbake/lib/toaster/toastergui/templates/landing_not_managed.html
parentc856a4efc95ab3031d9f3ee197ed54515df0fee6 (diff)
downloadpoky-64fc177299149376978a9e89eddcf0a9dc846a7e.tar.gz
bitbake: toaster: landing page when no build module
Add landing page for managed build pages when build module not installed. Some wording and whitespace changed. [YOCTO #6483] (Bitbake rev: 6618a0a71cc9ea5426238549094ab9e05ae61649) Signed-off-by: David Reyna <David.Reyna@windriver.com> 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/landing_not_managed.html')
-rw-r--r--bitbake/lib/toaster/toastergui/templates/landing_not_managed.html32
1 files changed, 32 insertions, 0 deletions
diff --git a/bitbake/lib/toaster/toastergui/templates/landing_not_managed.html b/bitbake/lib/toaster/toastergui/templates/landing_not_managed.html
new file mode 100644
index 0000000000..fe56655a13
--- /dev/null
+++ b/bitbake/lib/toaster/toastergui/templates/landing_not_managed.html
@@ -0,0 +1,32 @@
1{% extends "base.html" %}
2
3{% load static %}
4{% load projecttags %}
5{% load humanize %}
6
7{% block pagecontent %}
8
9 <div class="container-fluid">
10 <div class="row-fluid">
11 <!-- Empty - no build module -->
12 <div class="page-header top-air">
13 <h1>
14 This page only works with the Toaster 'Build' mode
15 </h1>
16 </div>
17 <div class="alert alert-info">
18 <p class="lead">
19 The 'Build' mode allows you to configure and run your Yocto Project builds from Toaster
20 <ul>
21 <li class="lead"><a href="https://wiki.yoctoproject.org/wiki/Toaster#Modes">
22 Read about the 'Build' mode
23 </a></li>
24 <li class="lead"><a href="/">
25 View your builds
26 </a></li>
27 </ul>
28 </p>
29 </div>
30 </div>
31
32{% endblock %}