You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

7 lines
287 B

{% load i18n %}
{% for dev in all_devices %}<div class="checkbox">
<label>
<input name="dv" type="checkbox"{% if dev.pk in dot_devices_ids %} checked{% endif %} value="{{ dev.pk }}"/> {{ dev.comment }}
</label>
</div>
{% empty %}{% trans 'no devices found' %}{% endfor %}