Squashing a small bug

This commit is contained in:
Maxime Beauchemin 2015-08-22 08:28:36 -07:00
parent 4ecf9d1beb
commit b240265d84
1 changed files with 3 additions and 1 deletions

View File

@ -14,7 +14,9 @@
<span class="col col-sm-4">{{ form.rolling_periods.label }}: {{ form.rolling_periods(class_="form-control") }}</span>
</div>
{% endif %}
<div>{{ form.limit.label }}: {{ form.limit(class_="form-control select2") }}</div>
{% if form.limit %}
<div>{{ form.limit.label }}: {{ form.limit(class_="form-control select2") }}</div>
{% endif %}
{% if form.series %}
<div>{{ form.series.label }}: {{ form.series(class_="form-control select2") }}</div>
{% endif %}