<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>