diff options
author | Alexandru DAMIAN <alexandru.damian@intel.com> | 2015-06-09 17:25:42 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-06-26 09:27:31 +0100 |
commit | 2c7ed96b567386d0f57ad8c088790a515d17b7af (patch) | |
tree | f322624d303f7c46034e9813717317c84017234f /bitbake/lib/toaster/toastergui/templates/configvars.html | |
parent | c362e61ee2cc97b393f7002c4592787d6573080c (diff) | |
download | poky-2c7ed96b567386d0f57ad8c088790a515d17b7af.tar.gz |
bitbake: toaster: remove BuildRequest references
In the toastergui application we should not display
implementation details about how the builds are run.
This patch removes the references to BuildRequest on the
majority of the views (except Builds page itself, as
that is more complicated).
(Bitbake rev: ead45a600813a1d8594e604875803ded781f83d8)
Signed-off-by: Alexandru DAMIAN <alexandru.damian@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/toaster/toastergui/templates/configvars.html')
-rw-r--r-- | bitbake/lib/toaster/toastergui/templates/configvars.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bitbake/lib/toaster/toastergui/templates/configvars.html b/bitbake/lib/toaster/toastergui/templates/configvars.html index cbe3c6876f..89576733c2 100644 --- a/bitbake/lib/toaster/toastergui/templates/configvars.html +++ b/bitbake/lib/toaster/toastergui/templates/configvars.html | |||
@@ -56,7 +56,7 @@ | |||
56 | <td class="file"><a data-toggle="modal" href="#variable-{{variable.pk}}"> | 56 | <td class="file"><a data-toggle="modal" href="#variable-{{variable.pk}}"> |
57 | {% if variable.vhistory.all %} | 57 | {% if variable.vhistory.all %} |
58 | {% for path in variable.vhistory.all|filter_setin_files:file_filter %} | 58 | {% for path in variable.vhistory.all|filter_setin_files:file_filter %} |
59 | {{path|cut_path_prefix:dirstostrip}}<br/> | 59 | {{path}}<br/> |
60 | {% endfor %} | 60 | {% endfor %} |
61 | {% endif %} | 61 | {% endif %} |
62 | </a></td> | 62 | </a></td> |
@@ -117,7 +117,7 @@ | |||
117 | <tbody> | 117 | <tbody> |
118 | {% for vh in variable.vhistory.all %} | 118 | {% for vh in variable.vhistory.all %} |
119 | <tr> | 119 | <tr> |
120 | <td>{{forloop.counter}}</td><td>{{vh.file_name|cut_path_prefix:dirstostrip}}</td><td>{{vh.operation}}</td><td>{{vh.line_number}}</td> | 120 | <td>{{forloop.counter}}</td><td>{{vh.file_name}}</td><td>{{vh.operation}}</td><td>{{vh.line_number}}</td> |
121 | </tr> | 121 | </tr> |
122 | {%endfor%} | 122 | {%endfor%} |
123 | </tbody> | 123 | </tbody> |