diff options
author | Belen Barros Pena <belen.barros.pena@linux.intel.com> | 2014-11-27 12:18:25 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-11-28 14:03:00 +0000 |
commit | fee87cdd57369352047b33aafef2a2a7b403b06b (patch) | |
tree | 2e987f6e77849ee85b6d7587d4158cfa3b2c6329 /bitbake/lib/toaster/toastergui/templates/newproject.html | |
parent | af51fb06740768a85f4840ff2f93ef0c73f46877 (diff) | |
download | poky-fee87cdd57369352047b33aafef2a2a7b403b06b.tar.gz |
bitbake: toaster: release name consistency
Small changes to the project, new project and all layers
pages to ensure consitency in release naming across the
interface.
The changes are:
* In the new project page, change the label 'release version' to
'release'
* In the new project page, sort the releases in the dropdown menu
in ascending alphabetical order
* In the new project page, remove the release name that was
showing between brackets after the release description in the
dropdown menu
* In the project page, make sure the release information
shows the release description field instead of the release name,
to keep consistency with the new project page
* In the all layers page, provide some help text for the branch 'HEAD'
(Bitbake rev: 9a90bf201dab83060f0bdd6ac08c72b8d62f6060)
Signed-off-by: Belen Barros Pena <belen.barros.pena@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/toaster/toastergui/templates/newproject.html')
-rw-r--r-- | bitbake/lib/toaster/toastergui/templates/newproject.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bitbake/lib/toaster/toastergui/templates/newproject.html b/bitbake/lib/toaster/toastergui/templates/newproject.html index 5a5e1e6dfe..512a8fa68f 100644 --- a/bitbake/lib/toaster/toastergui/templates/newproject.html +++ b/bitbake/lib/toaster/toastergui/templates/newproject.html | |||
@@ -18,12 +18,12 @@ | |||
18 | <input type="text" class="input-xlarge" required id="new-project-name" name="projectname"> | 18 | <input type="text" class="input-xlarge" required id="new-project-name" name="projectname"> |
19 | {% if releases.count > 1 %} | 19 | {% if releases.count > 1 %} |
20 | <label class="project-form"> | 20 | <label class="project-form"> |
21 | Release version | 21 | Release |
22 | <i class="icon-question-sign get-help" title="The version of the build system you want to use"></i> | 22 | <i class="icon-question-sign get-help" title="The version of the build system you want to use"></i> |
23 | </label> | 23 | </label> |
24 | <select name="projectversion" id="projectversion"> | 24 | <select name="projectversion" id="projectversion"> |
25 | {% for release in releases %} | 25 | {% for release in releases %} |
26 | <option value="{{release.id}}"{%if projectversion == release.id %} selected{%endif%}>{{release.description}} ({{release.name}})</option> | 26 | <option value="{{release.id}}"{%if projectversion == release.id %} selected{%endif%}>{{release.description}}</option> |
27 | {% endfor %} | 27 | {% endfor %} |
28 | </select> | 28 | </select> |
29 | {% for release in releases %} | 29 | {% for release in releases %} |