[7/7] toaster: drop landing_not_managed template

Message ID 5b114196ee72b569f9366ed8e45cb60516bbf692.1647116564.git.tim.orling@konsulko.com
State New
Headers show
Series [1/7] toaster-requirements.txt: Django 3.2 LTS | expand

Commit Message

Tim Orling March 12, 2022, 8:31 p.m. UTC
This template is not referenced anywhere and therefore not used.
It also refers to the obsolete "build mode" in the old docs.

Signed-off-by: Tim Orling <tim.orling@konsulko.com>
---
 .../templates/landing_not_managed.html        | 34 -------------------
 1 file changed, 34 deletions(-)
 delete mode 100644 bitbake/lib/toaster/toastergui/templates/landing_not_managed.html

Patch

diff --git a/bitbake/lib/toaster/toastergui/templates/landing_not_managed.html b/bitbake/lib/toaster/toastergui/templates/landing_not_managed.html
deleted file mode 100644
index e7200b84121..00000000000
--- a/bitbake/lib/toaster/toastergui/templates/landing_not_managed.html
+++ /dev/null
@@ -1,34 +0,0 @@ 
-{% extends "base.html" %}
-
-{% load static %}
-{% load projecttags %}
-{% load humanize %}
-
-{% block title %} Welcome to Toaster {% endblock %}
-
-{% block pagecontent %}
-
-  <div class="container">
-   <div class="row">
-    <!-- Empty - no build module -->
-    <div class="page-header top-air">
-     <h1>
-       This page only works with Toaster in 'Build' mode
-     </h1>
-    </div>
-    <div class="alert alert-info lead">
-     <p">
-     The 'Build' mode allows you to configure and run your Yocto Project builds from Toaster.
-     <ul>
-       <li><a href="https://www.yoctoproject.org/docs/latest/toaster-manual/toaster-manual.html#intro-modes">
-       Read about the 'Build' mode
-       </a></li>
-       <li><a href="/">
-       View your builds
-       </a></li>
-     </ul>
-     </p>
-    </div>
-   </div>
-
-{% endblock %}