diff options
author | Belen Barros Pena <belen.barros.pena@intel.com> | 2014-03-16 13:33:36 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-03-28 13:44:52 +0000 |
commit | c07a294e30e09926a07081ebc275c1766304ce38 (patch) | |
tree | 9d0940caebec7bee4ef97884cf362f85bb11aa2e /bitbake | |
parent | 7643ba3ea18d053347ca7d95c9da6f800a7acb6d (diff) | |
download | poky-c07a294e30e09926a07081ebc275c1766304ce38.tar.gz |
bitbake: toaster: Fix typo in heading code
Fix typo in the code that handles the changes
in the h1 text in order to display the number of results
returned by a search.
[YOCTO #6001]
(Bitbake rev: 65bdd6cf8d0cc2af6cd424de735a5e3f2e54fa99)
Signed-off-by: Belen Barros Pena <belen.barros.pena@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-rw-r--r-- | bitbake/lib/toaster/toastergui/templates/configvars.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/toaster/toastergui/templates/configvars.html b/bitbake/lib/toaster/toastergui/templates/configvars.html index de4940e12e..1bd29aac0d 100644 --- a/bitbake/lib/toaster/toastergui/templates/configvars.html +++ b/bitbake/lib/toaster/toastergui/templates/configvars.html | |||
@@ -16,7 +16,7 @@ | |||
16 | <h1> | 16 | <h1> |
17 | {% if request.GET.filter and objects.paginator.count > 0 or request.GET.search and objects.paginator.count > 0 %} | 17 | {% if request.GET.filter and objects.paginator.count > 0 or request.GET.search and objects.paginator.count > 0 %} |
18 | {{objects.paginator.count}} variable{{objects.paginator.count|pluralize}} found | 18 | {{objects.paginator.count}} variable{{objects.paginator.count|pluralize}} found |
19 | {%elif request.GET.filter and objects.paginator.count == 0 or request.GETs.search and objects.paginator.count == 0 %} | 19 | {%elif request.GET.filter and objects.paginator.count == 0 or request.GET.search and objects.paginator.count == 0 %} |
20 | No variables found | 20 | No variables found |
21 | {%else%} | 21 | {%else%} |
22 | Configuration | 22 | Configuration |