This commit is contained in:
sharkykh 2017-05-15 09:34:22 +03:00
parent dd1f1b6834
commit bd1a9f5cf4
1 changed files with 8 additions and 15 deletions

View File

@ -86,24 +86,17 @@
</thead>
<tbody>
{%- for key, value in files.items() recursive %}
<tr>
{%- if value is iterable %}
{%- if loop.depth0 is greaterthan 0 %}
<tr>
<td colspan="2" style="padding-left: {{ loop.depth0 * 20 }}px">
{%- else %}
<tr>
<td colspan="2">
{%- endif %}
<i class="glyphicon glyphicon-folder-open"></i> <b>{{ key }}</b></td>
{{ loop(value.items()) }}
</tr>
<td colspan="2" {% if loop.depth0 is greaterthan 0 %}style="padding-left: {{ loop.depth0 * 20 }}px"{% endif %}>
<i class="glyphicon glyphicon-folder-open"></i> <b>{{ key }}</b></td>
{{ loop(value.items()) }}
{%- else %}
<tr>
<td style="padding-left: {{ loop.depth0 * 20 }}px">
<i class="glyphicon glyphicon-file"></i> {{ key }}</td>
<td class="col-md-2">{{ value | filesizeformat(True) }}</td>
</tr>
<td style="padding-left: {{ loop.depth0 * 20 }}px">
<i class="glyphicon glyphicon-file"></i> {{ key }}</td>
<td class="col-md-2">{{ value | filesizeformat(True) }}</td>
{%- endif %}
</tr>
{%- endfor %}
</table>
</div>