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.
11 lines
381 B
11 lines
381 B
<h4>{{ dot.title }}</h4>
|
|
<div class="list-group">
|
|
{% for dev in devs %}
|
|
<a class="list-group-item" href="{% url 'devapp:view' dev.id %}" target="_blank">
|
|
{{ dev.comment }}
|
|
<span class="badge">14</span>
|
|
</a>
|
|
{% empty %}
|
|
<li class="list-group-item">нет привязанных устройств</li>
|
|
{% endfor %}
|
|
</div>
|