summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/toaster/toastergui/templates/landing_not_managed.html
diff options
context:
space:
mode:
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 %}