All filters should be checked on start.

This commit is contained in:
Víðir Valberg Guðmundsson 2017-04-21 11:28:22 +02:00
parent e36eb17ac8
commit 3122092326

View file

@ -32,7 +32,8 @@
<input type="checkbox" <input type="checkbox"
name="event_type" name="event_type"
value="{{ type.slug }}" value="{{ type.slug }}"
class="form-control event-type-checkbox"/> {{ type.name }} class="form-control event-type-checkbox"
checked /> {{ type.name }}
</li> </li>
{% endfor %} {% endfor %}
</ul> </ul>
@ -46,7 +47,8 @@
<input type="checkbox" <input type="checkbox"
name="locations" name="locations"
value="{{ location.slug }}" value="{{ location.slug }}"
class="form-control location-checkbox"/> {{ location.name }} class="form-control location-checkbox"
checked /> {{ location.name }}
</li> </li>
{% endfor %} {% endfor %}
</ul> </ul>