summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/toaster/toastergui/templates/dirinfo.html
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/toaster/toastergui/templates/dirinfo.html')
-rw-r--r--bitbake/lib/toaster/toastergui/templates/dirinfo.html18
1 files changed, 11 insertions, 7 deletions
diff --git a/bitbake/lib/toaster/toastergui/templates/dirinfo.html b/bitbake/lib/toaster/toastergui/templates/dirinfo.html
index a5bc48127c..7819894b65 100644
--- a/bitbake/lib/toaster/toastergui/templates/dirinfo.html
+++ b/bitbake/lib/toaster/toastergui/templates/dirinfo.html
@@ -103,12 +103,16 @@
103 name += '</td>'; 103 name += '</td>';
104 } 104 }
105 else { 105 else {
106 name = '<td>';
107 if (o.link_to == null) { 106 if (o.link_to == null) {
108 name += '<i class="icon-file"></i>'; 107 namespan = 2;
108 if (o.package == null) {
109 namespan = 3;
110 }
111 var colspan = 'colspan="' + namespan + '"';
112 name = '<td ' + colspan + '><i class="icon-file"></i>';
109 } 113 }
110 else { 114 else {
111 name += '<i class="icon-hand-right"></i>'; 115 name = '<td><i class="icon-hand-right"></i>';
112 } 116 }
113 name += '&nbsp;' + o.name; 117 name += '&nbsp;' + o.name;
114 name += '</td>'; 118 name += '</td>';
@@ -207,10 +211,10 @@
207 <th>Directory / File</th> 211 <th>Directory / File</th>
208 <th>Symbolic link to</th> 212 <th>Symbolic link to</th>
209 <th>Source package</th> 213 <th>Source package</th>
210 <th>Size</th> 214 <th class="narrow-col">Size</th>
211 <th>Permissions</th> 215 <th class="medium-col">Permissions</th>
212 <th>Owner</th> 216 <th class="narrow-col">Owner</th>
213 <th>Group</th> 217 <th class="narrow-col">Group</th>
214 </tr> 218 </tr>
215 </thead> 219 </thead>
216 <tbody> 220 <tbody>