mirror of
https://git.yoctoproject.org/poky
synced 2026-02-10 10:43:02 +01:00
Use the all builds ToasterTable as the basis for the project builds ToasterTable. [YOCTO #8738] (Bitbake rev: 87bcfb740dd2d9944e35a2a1f71cbf8ff3b266e9) Signed-off-by: Elliot Smith <elliot.smith@intel.com> Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
48 lines
1.5 KiB
HTML
48 lines
1.5 KiB
HTML
{% extends "base.html" %}
|
|
|
|
{% load projecttags %}
|
|
{% load humanize %}
|
|
|
|
{% block title %} {{title}} - {{project.name}} - Toaster {% endblock %}
|
|
|
|
{% block pagecontent %}
|
|
|
|
{% include "projecttopbar.html" %}
|
|
<script type="text/javascript">
|
|
$(document).ready(function(){
|
|
$("#config-nav .nav li a").each(function(){
|
|
if (window.location.pathname === $(this).attr('href'))
|
|
$(this).parent().addClass('active');
|
|
else
|
|
$(this).parent().removeClass('active');
|
|
});
|
|
|
|
$("#topbar-configuration-tab").addClass("active")
|
|
});
|
|
</script>
|
|
|
|
<div class="row-fluid">
|
|
<!-- only on config pages -->
|
|
<div id="config-nav" class="span2">
|
|
<ul class="nav nav-list well">
|
|
<li><a class="nav-parent" href="{% url 'project' project.id %}">Configuration</a></li>
|
|
<li class="nav-header">Compatible metadata</li>
|
|
{% if CUSTOM_IMAGE %}
|
|
<li><a href="{% url 'projectcustomimages' project.id %}">Custom images</a></li>
|
|
{% endif %}
|
|
<li><a href="{% url 'projectimagerecipes' project.id %}">Image recipes</a></li>
|
|
<li><a href="{% url 'projectsoftwarerecipes' project.id %}">Software recipes</a></li>
|
|
<li><a href="{% url 'projectmachines' project.id %}">Machines</a></li>
|
|
<li><a href="{% url 'projectlayers' project.id %}">Layers</a></li>
|
|
<li class="nav-header">Extra configuration</li>
|
|
<li><a href="{% url 'projectconf' project.id %}">BitBake variables</a></li>
|
|
</ul>
|
|
</div>
|
|
<div class="span10">
|
|
{% block projectinfomain %}{% endblock %}
|
|
</div>
|
|
</div>
|
|
|
|
{% endblock %}
|
|
|