summaryrefslogtreecommitdiffstats
path: root/lib/toaster/toastergui/templates/configvars.html
diff options
context:
space:
mode:
authorAlexandru DAMIAN <alexandru.damian@intel.com>2015-06-09 17:25:42 +0100
committerAlexandru DAMIAN <alexandru.damian@intel.com>2015-06-25 11:10:02 +0100
commitead45a600813a1d8594e604875803ded781f83d8 (patch)
treee4637a2a4380a8549ef6f3651bc2cbe6834ac57c /lib/toaster/toastergui/templates/configvars.html
parent0ac02d3775106b485e29496b62f31e91fd3f9387 (diff)
downloadbitbake-ead45a600813a1d8594e604875803ded781f83d8.tar.gz
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). Signed-off-by: Alexandru DAMIAN <alexandru.damian@intel.com>
Diffstat (limited to 'lib/toaster/toastergui/templates/configvars.html')
-rw-r--r--lib/toaster/toastergui/templates/configvars.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/toaster/toastergui/templates/configvars.html b/lib/toaster/toastergui/templates/configvars.html
index cbe3c6876..89576733c 100644
--- a/lib/toaster/toastergui/templates/configvars.html
+++ b/lib/toaster/toastergui/templates/configvars.html
@@ -56,7 +56,7 @@
<td class="file"><a data-toggle="modal" href="#variable-{{variable.pk}}">
{% if variable.vhistory.all %}
{% for path in variable.vhistory.all|filter_setin_files:file_filter %}
- {{path|cut_path_prefix:dirstostrip}}<br/>
+ {{path}}<br/>
{% endfor %}
{% endif %}
</a></td>
@@ -117,7 +117,7 @@
<tbody>
{% for vh in variable.vhistory.all %}
<tr>
- <td>{{forloop.counter}}</td><td>{{vh.file_name|cut_path_prefix:dirstostrip}}</td><td>{{vh.operation}}</td><td>{{vh.line_number}}</td>
+ <td>{{forloop.counter}}</td><td>{{vh.file_name}}</td><td>{{vh.operation}}</td><td>{{vh.line_number}}</td>
</tr>
{%endfor%}
</tbody>