Display by default only visible buttons

This commit is contained in:
Yohann D'ANELLO 2020-04-27 04:01:30 +02:00
parent 5ea531fe68
commit 368d285747
1 changed files with 3 additions and 1 deletions

View File

@ -12,7 +12,7 @@
<div class="form-group">
<div id="div_active_only" class="form-check">
<label for="active_only" class="form-check-label">
<input type="checkbox" name="active_only" class="checkboxinput form-check-input" id="active_only">
<input type="checkbox" name="active_only" class="checkboxinput form-check-input" checked="" id="active_only">
{% trans "Display visible buttons only" %}
</label>
</div>
@ -94,6 +94,8 @@
$(document).ready(function() {
$("#search_field").keyup(search_field_moved);
$("#active_only").change(search_field_moved);
search_field_moved();
});
</script>
{% endblock %}