dbms_primeidc/extdbms/lib/Views/dbms/dashboard/latest_history.php
2025-04-03 18:45:20 +09:00

21 lines
924 B
PHP

<style>
input[type=text] {
padding: 2px;
border: 1px solid #ccc;
-webkit-border-radius: 5px;
border-radius: 5px;
}
input[type=text]:focus {
border-color: #333;
}
</style>
<div><strong>패스워드용 난수 : </strong><input type=text style="width:290px;" value="<?= $this->helper->getRandomString() ?>"></div>
<?php foreach ($this->entitys as $entity): ?>
<?php $service = $this->services[$entity->getServiceCode()]; ?>
<div>
<i class="fa fa-info-circle fa-fw"></i>
<a href="/serviceDetailSolo.sev?client_code=<?= $service->getClientCode() ?>&service_code=<?= $entity->getServiceCode() ?>" style="text-decoration: none;color:gray;font-size:10pt;line-height:1.6em;">[ <?= $this->clients[$service->getClientCode()]->getTitle() ?> ] <?= $entity->getServiceCode() ?> / <?= $entity->behavior ?></a>
<span class="pull-right text-muted small"><em><?= $entity->note ?></em></span>
</div>
<?php endforeach ?>