summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/toaster/toastergui/templates/landing_not_managed.html
blob: fe56655a131ba41b7beb18a83dc7454e12cd7042 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{% extends "base.html" %}

{% load static %}
{% load projecttags %}
{% load humanize %}

{% block pagecontent %}

  <div class="container-fluid">
   <div class="row-fluid">
    <!-- Empty - no build module -->
    <div class="page-header top-air">
     <h1>
       This page only works with the Toaster 'Build' mode
     </h1>
    </div>
    <div class="alert alert-info">
     <p class="lead">
     The 'Build' mode allows you to configure and run your Yocto Project builds from Toaster
     <ul>
       <li class="lead"><a href="https://wiki.yoctoproject.org/wiki/Toaster#Modes">
       Read about the 'Build' mode
       </a></li>
       <li class="lead"><a href="/">
       View your builds
       </a></li>
     </ul>
     </p>
    </div>
   </div>

{% endblock %}