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.
 
 
 
 
 

23 lines
932 B

{% load i18n %}
<h4>{{ dot.title }}</h4>
<div class="list-group">
{% for dev in devs %}
<a class="list-group-item" href="{% url 'devapp:view' dev.group.pk dev.pk %}" target="_blank" title="{{ dev.mon.plugin_output }}">
{% if dev.status == 'up' %}
<span class="glyphicon glyphicon-ok-circle text-success"></span>
{% elif dev.status == 'dwn' or dev.status == 'unr' %}
<span class="glyphicon glyphicon-exclamation-sign text-danger"></span>
{% endif %}
<b>{{ dev.comment }}</b> {{ dev.mon.plugin_output }}
</a>
{% empty %}
<li class="list-group-item">{% trans 'Pinned devices not found' %}</li>
{% endfor %}
</div>
{% if dot.attachment %}
<span class="glyphicon glyphicon-file"></span>
<a href="{{ dot.attachment.url }}" class="btn btn-xs btn-dfault" target="_blank">{{ dot.attachment.name }}</a>
{% endif %}