create a seperate table for each target device

This commit is contained in:
Andreas Zweili 2020-01-02 11:39:41 +01:00
parent 2e5756f07a
commit 02e3dccc6c
1 changed files with 2 additions and 2 deletions

View File

@ -35,8 +35,8 @@
<div class="card">
<div class="content">
<div class="header">Target Devices</div>
<table class="ui celled table">
{% for device in target_device_list %}
<table class="ui celled table">
<tr>
<td><b>Target Device:</b></td>
<td><a href="{% url 'computer' device.device.id %}">{{ device.device }}</a></td>
@ -45,8 +45,8 @@
<td><b>Target Path:</b></td>
<td>{{ device.target_path }}</td>
</tr>
{% endfor %}
</table>
{% endfor %}
</div>
</div>
{% endif %}