mirror of
git://git.yoctoproject.org/poky
synced 2026-09-06 22:07:57 +00:00
This patch clones the Simple UI to provide the base code for the development of the Toaster GUI. The clone takes the place of the application that was reserved for Javascript MVC code. The templates used for Simple UI are renamed to start with an "simple_" to prevent name resolution conflict with the Toaster GUI templates. Minor changes are made to the settings.py and urls.py in the toaster main section to account for the newly enabled application. (Bitbake rev: e2fde84f16da017ba0d71aef6a1fa8e2b9255db4) Signed-off-by: Alexandru DAMIAN <alexandru.damian@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
31 lines
881 B
HTML
31 lines
881 B
HTML
<!DOCTYPE html>
|
|
{% load static %}
|
|
<html>
|
|
<head>
|
|
<title>Toaster Simple Explorer</title>
|
|
<script src="{% static 'js/jquery-2.0.3.js' %}">
|
|
</script>
|
|
<script src="{% static 'js/bootstrap.js' %}">
|
|
</script>
|
|
<link href="{% static 'css/bootstrap.css' %}" rel="stylesheet" type="text/css">
|
|
</head>
|
|
|
|
<body style="height: 100%">
|
|
<div style="width:100%; height: 100%; position:absolute">
|
|
<div style="width: 100%; height: 3em" class="nav">
|
|
<ul class="nav nav-tabs">
|
|
<li><a href="{% url "all-builds" %}">All Builds</a></li>
|
|
<li><a href="{% url "all-layers" %}">All Layers</a></li>
|
|
</ul>
|
|
</div>
|
|
|
|
<div style="overflow-y:scroll; width: 100%; position: absolute; top: 3em; bottom:70px ">
|
|
{% block pagecontent %}
|
|
{% endblock %}
|
|
</div>
|
|
<div class="navbar" style="position: absolute; bottom: 0; width:100%"><br/>About Toaster | Yocto Project </div>
|
|
</div>
|
|
</body>
|
|
</html>
|
|
|