summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/toaster/toastergui/templates/baseprojectpage.html
blob: 1f45be462db742ff65faafbe8323c726183341cc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{% 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 %}