mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2024-11-05 09:26:27 +00:00
Table -> grid pour l'affichage sur telephone
This commit is contained in:
parent
0a2c48da6b
commit
b5c01bf58f
1 changed files with 28 additions and 19 deletions
|
@ -60,25 +60,34 @@ with this program; if not, write to the Free Software Foundation, Inc.,
|
|||
</div>
|
||||
</div>
|
||||
<div class="panel-body">
|
||||
<div class="table-repsonsive">
|
||||
<table class="table">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>{% trans "IPv4 address"%}</th>
|
||||
<th>{% trans "Ports"%}</th>
|
||||
<th>{% trans "Stack"%}</th>
|
||||
<th>{% trans "Stack member ID" %}</th>
|
||||
<th>{% trans "Switch model" %}</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tr>
|
||||
<td>{{ switch.interface_set.first.ipv4 }}</td>
|
||||
<td>{{ switch.number }}</td>
|
||||
<td>{{ switch.stack.name }}</td>
|
||||
<td>{{ switch.stack_member_id }}</td>
|
||||
<td>{{ switch.model }}</td>
|
||||
</tr>
|
||||
</table>
|
||||
<div class="container-fluid">
|
||||
<div class="row">
|
||||
<div class="col-sm-3">
|
||||
<b>{% trans "IPv4 address"%}</b>
|
||||
</br>
|
||||
{{ switch.interface_set.first.ipv4 }}
|
||||
</div>
|
||||
<div class="col-sm-2">
|
||||
<b>{% trans "Ports"%}</b>
|
||||
</br>
|
||||
{{ switch.number }}
|
||||
</div>
|
||||
<div class="col-sm-2">
|
||||
<b>{% trans "Stack"%}</b>
|
||||
</br>
|
||||
{{ switch.stack.name }}
|
||||
</div>
|
||||
<div class="col-sm-2">
|
||||
<b>{% trans "Stack member ID" %}</b>
|
||||
</br>
|
||||
{{ switch.stack_member_id }}
|
||||
</div>
|
||||
<div class="col-sm-3">
|
||||
<b>{% trans "Switch model" %}</b>
|
||||
</br>
|
||||
{{ switch.model }}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{% if switch.interface_set.first.details %}
|
||||
|
|
Loading…
Reference in a new issue