mirror of
https://git.yoctoproject.org/poky
synced 2026-02-08 18:02:12 +01:00
Since the Toaster GUI was cloned from the Simple UI, we need to update the URL pattern names in Simple UI to prevent conflict when determining the reverse URL path. (Bitbake rev: 6ed1a28eb0e52a6de83a37664ff6f4418ce84ee4) Signed-off-by: Alexandru DAMIAN <alexandru.damian@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
31 lines
895 B
HTML
31 lines
895 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 "simple-all-builds" %}">All Builds</a></li>
|
|
<li><a href="{% url "simple-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>
|
|
|