summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bitbake/lib/toaster/toastergui/templates/package_included_reverse_dependencies.html2
-rw-r--r--bitbake/lib/toaster/toastergui/templates/tablesort.html4
2 files changed, 3 insertions, 3 deletions
diff --git a/bitbake/lib/toaster/toastergui/templates/package_included_reverse_dependencies.html b/bitbake/lib/toaster/toastergui/templates/package_included_reverse_dependencies.html
index 4ba472f2d6..5cc8b47a60 100644
--- a/bitbake/lib/toaster/toastergui/templates/package_included_reverse_dependencies.html
+++ b/bitbake/lib/toaster/toastergui/templates/package_included_reverse_dependencies.html
@@ -23,7 +23,7 @@
23 {% include "tablesort.html" %} 23 {% include "tablesort.html" %}
24 <tbody> 24 <tbody>
25 {% for reverse_dep in objects %} 25 {% for reverse_dep in objects %}
26 <tr {{reverse_dep.size|format_vpackage_rowclass}} > 26 <tr {% if reverse_dep.size %}{{reverse_dep.size|format_vpackage_rowclass}}{%endif%} >
27 {% if reverse_dep.size != -1 %} 27 {% if reverse_dep.size != -1 %}
28 <td> 28 <td>
29 <a href="{% url 'package_included_detail' build.id target.id reverse_dep.package_id %}"> 29 <a href="{% url 'package_included_detail' build.id target.id reverse_dep.package_id %}">
diff --git a/bitbake/lib/toaster/toastergui/templates/tablesort.html b/bitbake/lib/toaster/toastergui/templates/tablesort.html
index bf311b6edd..362474293e 100644
--- a/bitbake/lib/toaster/toastergui/templates/tablesort.html
+++ b/bitbake/lib/toaster/toastergui/templates/tablesort.html
@@ -5,7 +5,7 @@
5 <thead> 5 <thead>
6 <tr> 6 <tr>
7 {% for tc in tablecols %} 7 {% for tc in tablecols %}
8 <th class="{{tc.dclass}} {{tc.clclass}}"> 8 <th class="{%if tc.dclass%}{{tc.dclass}}{%endif%} {%if tc.clclass%}{{tc.clclass}}{%endif%}">
9 {%if tc.qhelp%}<i class="icon-question-sign get-help" title="{{tc.qhelp}}"></i>{%endif%} 9 {%if tc.qhelp%}<i class="icon-question-sign get-help" title="{{tc.qhelp}}"></i>{%endif%}
10 {{tc.name}} 10 {{tc.name}}
11 </th> 11 </th>
@@ -18,7 +18,7 @@
18 <!-- Table header row; generated from "tablecols" entry in the context dict --> 18 <!-- Table header row; generated from "tablecols" entry in the context dict -->
19 <tr> 19 <tr>
20 {% for tc in tablecols %} 20 {% for tc in tablecols %}
21 <th class="{{tc.dclass}} {{tc.clclass}}"> 21 <th class="{%if tc.dclass%}{{tc.dclass}}{%endif%} {%if tc.clclass%}{{tc.clclass}}{%endif%}">
22 {%if tc.qhelp%}<i class="icon-question-sign get-help" title="{{tc.qhelp}}"></i>{%endif%} 22 {%if tc.qhelp%}<i class="icon-question-sign get-help" title="{{tc.qhelp}}"></i>{%endif%}
23 {%if tc.orderfield%} 23 {%if tc.orderfield%}
24 <a {%if tc.ordericon%} class="sorted" {%endif%} 24 <a {%if tc.ordericon%} class="sorted" {%endif%}