diff options
| author | Belen Barros Pena <belen.barros.pena@intel.com> | 2016-02-22 09:08:38 +0000 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-02-26 17:20:23 +0000 |
| commit | a97081ba5555691014312082037b8372ecd1e1e6 (patch) | |
| tree | d503a83825d4459b19b53f8fd4eeea40a622168d | |
| parent | e1fc3190b730aaa73fd7b004c0b7f35a6626bd24 (diff) | |
| download | poky-a97081ba5555691014312082037b8372ecd1e1e6.tar.gz | |
bitbake: toaster: make 'configuration' the first tab
Our project pages have 4 tabs: builds, configuration, import layer and
new custom image. Even though we treat the 'configuration' as the
default tab, it comes second after the builds tab.
That's a bit strange: the default tab should be the first one listed.
This patch changes the tab order to put 'configuration' first.
(Bitbake rev: ccb90019489c2c324c2a5a60295e02280a2ec18f)
Signed-off-by: Belen Barros Pena <belen.barros.pena@intel.com>
Signed-off-by: Elliot Smith <elliot.smith@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
| -rw-r--r-- | bitbake/lib/toaster/toastergui/templates/projecttopbar.html | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/bitbake/lib/toaster/toastergui/templates/projecttopbar.html b/bitbake/lib/toaster/toastergui/templates/projecttopbar.html index 5bc1ac4ad2..268a99eb21 100644 --- a/bitbake/lib/toaster/toastergui/templates/projecttopbar.html +++ b/bitbake/lib/toaster/toastergui/templates/projecttopbar.html | |||
| @@ -44,17 +44,17 @@ | |||
| 44 | {% if not project.is_default %} | 44 | {% if not project.is_default %} |
| 45 | <div id="project-topbar"> | 45 | <div id="project-topbar"> |
| 46 | <ul class="nav nav-pills"> | 46 | <ul class="nav nav-pills"> |
| 47 | <li> | ||
| 48 | <a href="{% url 'projectbuilds' project.id %}"> | ||
| 49 | Builds ({{project.get_number_of_builds}}) | ||
| 50 | </a> | ||
| 51 | </li> | ||
| 52 | <li id="topbar-configuration-tab"> | 47 | <li id="topbar-configuration-tab"> |
| 53 | <a href="{% url 'project' project.id %}"> | 48 | <a href="{% url 'project' project.id %}"> |
| 54 | Configuration | 49 | Configuration |
| 55 | </a> | 50 | </a> |
| 56 | </li> | 51 | </li> |
| 57 | <li> | 52 | <li> |
| 53 | <a href="{% url 'projectbuilds' project.id %}"> | ||
| 54 | Builds ({{project.get_number_of_builds}}) | ||
| 55 | </a> | ||
| 56 | </li> | ||
| 57 | <li> | ||
| 58 | <a href="{% url 'importlayer' project.id %}"> | 58 | <a href="{% url 'importlayer' project.id %}"> |
| 59 | Import layer | 59 | Import layer |
| 60 | </a> | 60 | </a> |
