mirror of
git://git.yoctoproject.org/poky
synced 2026-09-26 15:13:46 +00:00
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>
33 lines
770 B
HTML
33 lines
770 B
HTML
{% 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 %}
|