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 72d7bcc commit 58fff1bCopy full SHA for 58fff1b
src/templates/_manage/edit.html
@@ -79,6 +79,12 @@
79
<table id="filters" class="data{% if not showFilters%} hidden{% endif %}">
80
{% for filter in allFilters %}
81
<tr data-class="{{ filter.class }}"{% if not filter.show %} class="hidden"{% endif %}>
82
+ {% tag 'tr' with {
83
+ class: not filter.show ? 'hidden' : false,
84
+ data: {
85
+ class: filter.class,
86
+ },
87
+ } %}
88
<th>{{ filter.displayName }}</th>
89
<td>
90
<div class="btngroup" tabindex="0">
@@ -88,7 +94,7 @@
94
</div>
95
<input type="hidden" name="filters[{{ filter.class }}]"{% if filter.enabled %} value="{{ filter.value ? 'yes' : 'no' }}"{% endif %}>
96
</td>
91
- </tr>
97
+ {% endtag %}
92
98
{% endfor %}
93
99
</table>
100
<div id="filter-spinner" class="hidden"><div class="spinner"></div></div>
0 commit comments