Files
webgui/emhttp/plugins/dynamix/DeviceIdentify.page
Zack Spear 0a9a28bf70 style: wrap table in DeviceIdentify.page with TableContainer for improved layout
- Encapsulated the existing table within a <div> with class "TableContainer" to enhance responsiveness and layout consistency.
- This change aligns with previous updates for better structure across similar components.
2025-05-09 14:31:36 -07:00

45 lines
1.2 KiB
Plaintext

Menu="Device New"
Title="Identity"
Tag="user"
Cond="array_key_exists($name, $disks) || array_key_exists($name, $devs)"
---
<?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>
function disklog(disk,key,value) {
$.post('/webGui/include/DiskLog.php',{disk:disk,key:key,value:value});
}
$(function() {
$.post("/webGui/include/SmartInfo.php",{cmd:'identify',port:'<?=$dev?>',name:'<?=$name?>'}, function(data) {
$('#disk_identify').html(data);
});
});
</script>
<div class="TableContainer">
<table class="unraid">
<thead>
<td style="width:33%">_(Title)_</td>
<td>_(Information)_</td>
</thead>
<tbody id="disk_identify">
<tr>
<td colspan='2'><div class="spinner"></div></td>
</tr>
</tbody>
</table>
</div>
<input type="button" value="_(Done)_" onclick="done()">
:smart_identity_help: