mirror of
https://git.yoctoproject.org/poky
synced 2026-03-12 10:19:44 +01:00
Convert all the HTML templates, JS and CSS in the project parts of toaster to use bootstrap 3. (Bitbake rev: 69527a731eada699d3f604ff8f3ae9410981ba9b) Signed-off-by: Belen Barros Pena <belen.barros.pena@linux.intel.com> Signed-off-by: Michael Wood <michael.g.wood@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
46 lines
1.5 KiB
HTML
46 lines
1.5 KiB
HTML
{% extends "base.html" %}
|
|
|
|
{% load projecttags %}
|
|
{% load humanize %}
|
|
|
|
{% block title %} {{title}} - {{project.name}} - Toaster {% endblock %}
|
|
|
|
{% block pagecontent %}
|
|
|
|
<div class="row">
|
|
{% 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>
|
|
|
|
<!-- only on config pages -->
|
|
<div id="config-nav" class="col-md-2">
|
|
<ul class="nav nav-pills nav-stacked">
|
|
<li><a class="nav-parent" href="{% url 'project' project.id %}">Configuration</a></li>
|
|
<li class="nav-header">Compatible metadata</li>
|
|
<li><a href="{% url 'projectcustomimages' project.id %}">Custom images</a></li>
|
|
<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="col-md-10">
|
|
{% block projectinfomain %}{% endblock %}
|
|
</div>
|
|
|
|
</div>
|
|
{% endblock %}
|
|
|