15 lines
648 B
HTML
15 lines
648 B
HTML
{# Partials: Shared period toolbar for stats pages #}
|
|
<form method="get" class="toolbar">
|
|
<div>
|
|
<label for="p">Période: </label>
|
|
<select id="p" name="p" onchange="this.form.submit()">
|
|
{% for opt in period_options %}
|
|
<option value="{{ opt }}" {% if p == opt %}selected{% endif %}>{{ opt }} jours</option>
|
|
{% endfor %}
|
|
</select>
|
|
<span style="margin-left:8px" class="text-muted">Du {{ start_date }} au {{ end_date }}</span>
|
|
</div>
|
|
<div class="text-muted">Mise en cache 15 minutes</div>
|
|
{% block stats_toolbar_extra %}{% endblock %}
|
|
{# Keep block for optional extensions on specific pages #}
|
|
</form>
|