36 lines
687 B
HTML
36 lines
687 B
HTML
<input
|
|
type="checkbox"
|
|
id="onlyTracked"
|
|
name="onlyTracked"
|
|
autocomplete="off"
|
|
value=""
|
|
/>
|
|
<label for="onlyTracked">Show only tracked</label>
|
|
<br />
|
|
|
|
<div class="material-filters">
|
|
{% for kind in material_kinds %}
|
|
<div>
|
|
<input
|
|
type="checkbox"
|
|
id="{{ kind }}Filter"
|
|
name="kindFilter"
|
|
autocomplete="off"
|
|
value="{{ kind }}"
|
|
/>
|
|
<label for="{{ kind }}Filter">{{ kind|capitalize }}</label>
|
|
</div>
|
|
{#{% if loop.index0 == 6 %}
|
|
<br />
|
|
{% endif %}#}
|
|
{% endfor %}
|
|
</div>
|
|
<br />
|
|
|
|
{% for drop in drops %}
|
|
{% call macros::drop("shard") %}
|
|
{% call macros::drop("stone") %}
|
|
{% call macros::drop("gem") %}
|
|
{% call macros::drop("crystal") %}
|
|
{% endfor %}
|