mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2024-11-23 11:53:12 +00:00
23 lines
801 B
HTML
23 lines
801 B
HTML
<table class="table table-striped">
|
|
<thead>
|
|
<tr>
|
|
<th>Nom dns</th>
|
|
<th>Proprietaire</th>
|
|
<th>Type</th>
|
|
<th>Mac</th>
|
|
<th>Ipv4</th>
|
|
<th></th>
|
|
</tr>
|
|
</thead>
|
|
{% for machine in machine_list %}
|
|
<tr>
|
|
<td>{{ machine.dns }}</td>
|
|
<td>{{ machine.machine.user }}</td>
|
|
<td>{{ machine.machine.type }}</td>
|
|
<td>{{ machine.mac_address }}</td>
|
|
<td>{{ machine.ipv4 }}</td>
|
|
<td><a class="btn btn-primary btn-sm" role="button" href="{% url 'machines:edit-machine' machine.id %}"><i class="glyphicon glyphicon-tree-conifer"></i> Editer</a></td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|
|
|