We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7b046cc commit 3cbf587Copy full SHA for 3cbf587
admin_numeric_filter/templates/admin/filter_numeric_slider.html
@@ -10,7 +10,7 @@
10
11
<h3>{% blocktrans with filter_title=title %}By {{ filter_title }}{% endblocktrans %}</h3>
12
13
- {% if choice.min or choice.min == 0 and choice.max or choice.max == 0 and choice.step %}
+ {% if choice.min is not None and choice.max is not None and choice.step %}
14
<div class="admin-numeric-filter-slider-tooltips">
15
<span class="admin-numeric-filter-slider-tooltip-from">{{ choice.value_from }}</span>
16
<span class="admin-numeric-filter-slider-tooltip-to">{{ choice.value_to }}</span>
0 commit comments