diff options
author | Patrick Williams <patrick@stwcx.xyz> | 2015-09-15 14:41:29 -0500 |
---|---|---|
committer | Patrick Williams <patrick@stwcx.xyz> | 2015-09-15 14:41:29 -0500 |
commit | c124f4f2e04dca16a428a76c89677328bc7bf908 (patch) | |
tree | cc1bfbbced5244130a102cdd63c72584b1d6e408 /bitbake/lib/toaster/toastergui/templates/baseprojectpage.html | |
download | blackbird-openbmc-c124f4f2e04dca16a428a76c89677328bc7bf908.tar.gz blackbird-openbmc-c124f4f2e04dca16a428a76c89677328bc7bf908.zip |
Squashed 'yocto-poky/' content from commit ea562de
git-subtree-dir: yocto-poky
git-subtree-split: ea562de57590c966cd5a75fda8defecd397e6436
Diffstat (limited to 'bitbake/lib/toaster/toastergui/templates/baseprojectpage.html')
-rw-r--r-- | bitbake/lib/toaster/toastergui/templates/baseprojectpage.html | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/bitbake/lib/toaster/toastergui/templates/baseprojectpage.html b/bitbake/lib/toaster/toastergui/templates/baseprojectpage.html new file mode 100644 index 000000000..668e0bf5e --- /dev/null +++ b/bitbake/lib/toaster/toastergui/templates/baseprojectpage.html @@ -0,0 +1,40 @@ +{% 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><a class="nav-parent" href="{% url 'project' project.id %}">Configuration</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> + <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 %} + |