Simon Bruder
2b48ab873e
All checks were successful
continuous-integration/drone/push Build is passing
16 lines
420 B
HTML
16 lines
420 B
HTML
{% from 'oscar/macros.html' import result_header, result_sub_header, result_footer, result_footer_rtl, icon %}
|
|
|
|
{{ result_header(result, favicons) }}
|
|
{{ result_sub_header(result) }}
|
|
|
|
{% if result.filesize %}<br />{{ icon('floppy-disk') }} {{ _('Filesize') }}
|
|
<span class="badge">
|
|
{{ result.filesize }}
|
|
</span>{% endif %}
|
|
|
|
{% if rtl %}
|
|
{{ result_footer_rtl(result) }}
|
|
{% else %}
|
|
{{ result_footer(result) }}
|
|
{% endif %}
|