mirror of
https://git.yoctoproject.org/poky
synced 2026-05-02 18:32:15 +02:00
This brings in the new project page design and improved navigation. As this also removes the dependency on Angular it also required that the entry points to the project page such as machine-change notifications are also updated. [YOCTO #7329] (Bitbake rev: 6489e6eb5c3b0d59063b6d60521fc33fe563e707) Signed-off-by: Michael Wood <michael.g.wood@intel.com> Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
41 lines
1.3 KiB
HTML
41 lines
1.3 KiB
HTML
{% extends "base.html" %}
|
|
{% load projecttags %}
|
|
{% load humanize %}
|
|
{% 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 class="nav-header">Configuration</li>
|
|
<li><a href="{% url 'project' project.id %}">Basic configuration</a></li>
|
|
<li><a href="{% url 'projectconf' project.id %}">BitBake variables</a></li>
|
|
<li class="nav-header">Compatible metadata</li>
|
|
<!-- <li><a href="all-image-recipes.html">Image recipes</a></li> -->
|
|
<li><a href="{% url 'projecttargets' project.id %}">Recipes</a></li>
|
|
<li><a href="{% url 'projectmachines' project.id %}">Machines</a></li>
|
|
<li><a href="{% url 'projectlayers' project.id %}">Layers</a></li>
|
|
</ul>
|
|
</div>
|
|
<div class="span10">
|
|
{% block projectinfomain %}{% endblock %}
|
|
</div>
|
|
</div>
|
|
|
|
{% endblock %}
|
|
|