mirror of
https://github.com/unraid/webgui.git
synced 2025-12-31 22:50:25 -06:00
- Wrapped tables in a <div> with class "TableContainer" for better responsiveness. - Ensured consistent styling and structure across ArrayDevices.page, BootDevice.page, DiskList.page, ShareList.page, DockerContainers.page, Plugins.page, and VMMachines.page. - Updated CSS to support new table container classes for enhanced layout control.
46 lines
1.2 KiB
Plaintext
46 lines
1.2 KiB
Plaintext
Menu="Main:3"
|
|
Title="Boot Device"
|
|
Tag="paw"
|
|
---
|
|
<?PHP
|
|
/* Copyright 2005-2023, Lime Technology
|
|
* Copyright 2012-2023, Bergware International.
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License version 2,
|
|
* as published by the Free Software Foundation.
|
|
*
|
|
* The above copyright notice and this permission notice shall be included in
|
|
* all copies or substantial portions of the Software.
|
|
*/
|
|
?>
|
|
<script>
|
|
<?if (_var($var,'fsState')=="Started"):?>
|
|
$('#tab3').bind({click:function() {$('i.toggle').show('slow');}});
|
|
<?endif;?>
|
|
</script>
|
|
<div class="TableContainer">
|
|
<table class="unraid disk_status">
|
|
<thead>
|
|
<tr>
|
|
<td>_(Device)_</td>
|
|
<td>_(Identification)_</td>
|
|
<td>_(Temp)_</td>
|
|
<td>_(Reads)_</td>
|
|
<td>_(Writes)_</td>
|
|
<td>_(Errors)_</td>
|
|
<td>_(FS)_</td>
|
|
<td>_(Size)_</td>
|
|
<td>_(Used)_</td>
|
|
<td>_(Free)_</td>
|
|
</tr>
|
|
</thead>
|
|
<tbody id="boot_device">
|
|
<?if (isset($disks['flash'])) :?>
|
|
<tr><td colspan='10'></td></tr>
|
|
<?endif;?>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
:boot_device_help:
|