diff options
author | Ravi Chintakunta <ravi.chintakunta@timesys.com> | 2014-01-15 14:55:06 -0500 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-01-27 21:01:05 +0000 |
commit | 4acdf8aaf1bb0a6d81c052a236ed04b45e4d8c3e (patch) | |
tree | b5b9816209a78e93d96f9da05151fa8c57e15706 /bitbake | |
parent | dfd7a8a27a15a921d51d9b29fb05a218a153730a (diff) | |
download | poky-4acdf8aaf1bb0a6d81c052a236ed04b45e4d8c3e.tar.gz |
bitbake: toaster: Base html fix to set the page title
Set title of the page if the context includes objectname.
(Bitbake rev: 8bfd140b93bcbfe8be4dd8a30268d3cc033e180f)
Signed-off-by: Ravi Chintakunta <ravi.chintakunta@timesys.com>
Signed-off-by: Alexandru DAMIAN <alexandru.damian@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-rw-r--r-- | bitbake/lib/toaster/toastergui/templates/base.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/toaster/toastergui/templates/base.html b/bitbake/lib/toaster/toastergui/templates/base.html index 492a0f561a..c8c1daeb75 100644 --- a/bitbake/lib/toaster/toastergui/templates/base.html +++ b/bitbake/lib/toaster/toastergui/templates/base.html | |||
@@ -2,7 +2,7 @@ | |||
2 | {% load static %} | 2 | {% load static %} |
3 | <html> | 3 | <html> |
4 | <head> | 4 | <head> |
5 | <title>Toaster</title> | 5 | <title>{% if objectname %} {{objectname|title}} - {% endif %}Toaster</title> |
6 | <link rel="stylesheet" href="{% static 'css/bootstrap.min.css' %}" type="text/css"> | 6 | <link rel="stylesheet" href="{% static 'css/bootstrap.min.css' %}" type="text/css"> |
7 | <link rel="stylesheet" href="{% static 'css/bootstrap-responsive.min.css' %}" type='text/css'> | 7 | <link rel="stylesheet" href="{% static 'css/bootstrap-responsive.min.css' %}" type='text/css'> |
8 | <link rel="stylesheet" href="{% static 'css/font-awesome.min.css' %}" type='text/css'> | 8 | <link rel="stylesheet" href="{% static 'css/font-awesome.min.css' %}" type='text/css'> |