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.
 
 
 
 
 

41 lines
1.4 KiB

{% extends request.is_ajax|yesno:'nullcont.htm,devapp/ext.htm' %}
{% block content %}
<div class="switch_ports">
<h4>{{ dev.get_devtype_display|default:'Название типа свича' }}</h4>
{% for port in ports %}
{% if port.st %}
{% if port.sp == 10 %}
<div class="port kilo">
{% elif port.sp == 100 %}
<div class="port mega">
{% elif port.sp == 1000 %}
<div class="port giga">
{% else %}
<div class="port">
{% endif %}
{% else %}
<div class="port dis">
{% endif %}
<a href="#" class="port-img" title="{{ port.nm }}">
<b>{{ port.num }}</b>
</a>
<div class="btn-group btn-group-xs btn-group-justified">
<a href="#" class="btn btn-success">
<span class="glyphicon glyphicon-ok"></span>
</a>
<a href="#" class="btn btn-danger">
<span class="glyphicon glyphicon-off"></span>
</a>
</div>
</div>
{% empty %}
<h3>Порты не найдены :(</h3>
{% endfor %}
</div>
{% endblock %}