RASCSI/python/web/src/templates/deviceinfo.html
Daniel Markstedt 76b0f43bc1
Web UI: Inject a Go Back link on all pages, except the index and upload page (#1302)
* Move the manual and go back elements into footer; log controls in log page

* Move inline css style to stylesheet

* Touch up page layout

* Use a Home icon for going to the index page

* Use one vertical table for device info
2023-11-08 14:52:49 -08:00

40 lines
1.2 KiB
HTML

{% extends "base.html" %}
{% block content %}
<h2>{{ _("Detailed Info for Attached Devices") }}</h2>
<p>
<table border="black" cellpadding="3" summary="Detailed information for attached devices">
<tr>
<th scope="row">{{ _("SCSI ID") }}</th>
<th scope="row">{{ _("LUN") }}</th>
<th scope="row">{{ _("Type") }}</th>
<th scope="row">{{ _("Status") }}</th>
<th scope="row">{{ _("File") }}</th>
<th scope="row">{{ _("Parameters") }}</th>
<th scope="row">{{ _("Vendor") }}</th>
<th scope="row">{{ _("Product") }}</th>
<th scope="row">{{ _("Revision") }}</th>
<th scope="row">{{ _("Block Size") }}</th>
<th scope="row">{{ _("Image Size") }}</th>
</tr>
{% for device in devices %}
<tr>
<td>{{ device["id"] }}</td>
<td>{{ device["unit"] }}</td>
<td>{{ device["device_type"] }}</td>
<td>{{ device["status"] }}</td>
<td>{{ device["image"] }}</td>
<td>{{ device["params"] }}</td>
<td>{{ device["vendor"] }}</td>
<td>{{ device["product"] }}</td>
<td>{{ device["revision"] }}</td>
<td>{{ device["block_size"] }}</td>
<td>{{ device["size"] }}</td>
</tr>
{% endfor %}
</table>
</p>
<hr/>
{% endblock content %}