mirror of
https://github.com/CyanoFresh/SmartHomePHP.git
synced 2026-03-03 16:44:01 +01:00
18 lines
538 B
PHP
18 lines
538 B
PHP
<?php
|
|
|
|
/* @var $this yii\web\View */
|
|
/* @var $widget \app\models\ItemWidget */
|
|
|
|
?>
|
|
|
|
<div class="col-lg-2 col-md-3 col-sm-4 col-xs-6">
|
|
<div class="panel-item panel-item-variable <?= $widget->html_class ?> withripple"
|
|
title="<?= $widget->getName() ?>"
|
|
data-item-id="<?= $widget->item_id ?>">
|
|
<div class="item-variable-icon">
|
|
<i class="fa <?= $widget->icon ?>"></i>
|
|
</div>
|
|
<div class="item-variable-value item-value"><?= $widget->item->getDefaultNAValue() ?></div>
|
|
</div>
|
|
</div>
|