mirror of https://github.com/CIRCL/lookyloo
11 lines
211 B
HTML
11 lines
211 B
HTML
|
<div>
|
||
|
{% if stats %}
|
||
|
{% for key, value in stats.items() %}
|
||
|
<dl class="row">
|
||
|
<dt class="col-sm-3">{{ key }}</dt>
|
||
|
<dd class="col-sm-3">{{ value }}</dd>
|
||
|
</dl>
|
||
|
{% endfor %}
|
||
|
{% endif%}
|
||
|
</div>
|