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.
16 lines
339 B
16 lines
339 B
<table class="table table-hover table-condensed table-bordered" >
|
|
<thead>
|
|
<tr>
|
|
<th>Interface</th>
|
|
<th>IP</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for data in getip %}
|
|
{% cycle '<tr>' ''%}
|
|
<td>{{data}}</td>
|
|
{% cycle '' '</tr>' %}
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
|