diff options
author | Michael Wood <michael.g.wood@intel.com> | 2015-07-31 15:09:03 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-08-01 11:26:11 +0100 |
commit | b06a633f25aec303e867c6109fb97d63d9ee1f73 (patch) | |
tree | e8cb117fa87f50114d63fa1104804abeb0708433 /bitbake/lib/toaster/toastergui/templates/generic-toastertable-page.html | |
parent | 3d3a2dbf5fc10773bb18ab7fb00f3db254139f47 (diff) | |
download | poky-b06a633f25aec303e867c6109fb97d63d9ee1f73.tar.gz |
bitbake: toastergui: Implement new project navigation
Change the structure of the project page to include a navigation menu
and top tab navigation. Remove old breadcrumb method.
[YOCTO #7329]
(Bitbake rev: 66fa0dd988e01ec79e74be7a5697eaa3b4f017d8)
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>
Diffstat (limited to 'bitbake/lib/toaster/toastergui/templates/generic-toastertable-page.html')
-rw-r--r-- | bitbake/lib/toaster/toastergui/templates/generic-toastertable-page.html | 19 |
1 files changed, 7 insertions, 12 deletions
diff --git a/bitbake/lib/toaster/toastergui/templates/generic-toastertable-page.html b/bitbake/lib/toaster/toastergui/templates/generic-toastertable-page.html index 78e942c7c0..654cdf4bab 100644 --- a/bitbake/lib/toaster/toastergui/templates/generic-toastertable-page.html +++ b/bitbake/lib/toaster/toastergui/templates/generic-toastertable-page.html | |||
@@ -3,19 +3,13 @@ | |||
3 | {% load humanize %} | 3 | {% load humanize %} |
4 | {% load static %} | 4 | {% load static %} |
5 | 5 | ||
6 | {% block localbreadcrumb %} | ||
7 | |||
8 | |||
9 | <li>{{title}}</li>{% endblock %} | ||
10 | |||
11 | {% block projectinfomain %} | 6 | {% block projectinfomain %} |
12 | <div class="page-header"> | 7 | |
13 | <h1>{{title}} (<span class="table-count-{{table_name}}"></span>) | 8 | <h2>{{title}} (<span class="table-count-{{table_name}}"></span>) |
14 | {% if project.release %} | 9 | {% if project.release %} |
15 | <i class="icon-question-sign get-help heading-help" title="This page lists {{title}} compatible with the release selected for this project, which is {{project.release.description}}"></i> | 10 | <i class="icon-question-sign get-help heading-help" title="This page lists {{title}} compatible with the release selected for this project, which is {{project.release.description}}"></i> |
16 | {% endif %} | 11 | {% endif %} |
17 | </h1> | 12 | </h2> |
18 | </div> | ||
19 | <div id="zone1alerts" style="display:none"> | 13 | <div id="zone1alerts" style="display:none"> |
20 | <div class="alert alert-info lead"> | 14 | <div class="alert alert-info lead"> |
21 | <button type="button" class="close" id="hide-alert">×</button> | 15 | <button type="button" class="close" id="hide-alert">×</button> |
@@ -24,4 +18,5 @@ | |||
24 | </div> | 18 | </div> |
25 | {% url table_name project.id as xhr_table_url %} | 19 | {% url table_name project.id as xhr_table_url %} |
26 | {% include "toastertable.html" %} | 20 | {% include "toastertable.html" %} |
21 | |||
27 | {% endblock %} | 22 | {% endblock %} |