Skip to content
Snippets Groups Projects
Commit dd37085d authored by Odin Johan Vatne's avatar Odin Johan Vatne
Browse files

Make filter checkboxes easier to click

parent 70980ccc
No related branches found
No related tags found
No related merge requests found
...@@ -3,9 +3,9 @@ ...@@ -3,9 +3,9 @@
<div class="tag tag-bubble {{ category|lower|slugify }}"></div><br/> <div class="tag tag-bubble {{ category|lower|slugify }}"></div><br/>
{% for tag in tags %} {% for tag in tags %}
{% if tag.id in selectedTags %} {% if tag.id in selectedTags %}
<input type="checkbox" name="tag{{tag.id}}" checked/> <input type="checkbox" name="tag{{tag.id}}" id="tag{{tag.id}}" checked/>
{% else %} {% else %}
<input type="checkbox" name="tag{{tag.id}}"/> <input type="checkbox" name="tag{{tag.id}}" id="tag{{tag.id}}"/>
{% endif %} {% endif %}
<label for="tag{{tag.id}}" class="{{ tag.category|lower|slugify }}">{{tag.name}}</label> <label for="tag{{tag.id}}" class="{{ tag.category|lower|slugify }}">{{tag.name}}</label>
<br/> <br/>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment