1
0
mirror of https://github.com/balkian/bitter.git synced 2025-04-24 21:59:06 +00:00
bitter/bitter/templates/limits.html
J. Fernando Sánchez 17f589c710 Added webserver
2016-09-14 19:53:56 +02:00

12 lines
292 B
HTML

{% extends "base.html" %}
{% block content %}
{% if limits | length %}
<ul id="double">
{% for limit in limits %}
<li class="limits"> <span>{{ limit }} </span><span><pre class="jsonlimits">{{ limits[limit] }}</pre></span></li>
{% endfor %}
</ul>
{% endif %}
{% endblock %}