clqms-server/app/Views/techinst_index.php
2025-08-15 09:45:16 +07:00

59 lines
1.5 KiB
PHP

<?= $this->extend('layouts/main.php') ?>
<?= $this->section('content') ?>
<?php
$instname = $insts[0]['instname'];
?>
<main id="main" class="main">
<div class="pagetitle">
<h1>Tech. List For Instrument <?=$instname;?></h1>
</div>
<?php
if(isset($validation)) {
?>
<div class='alert alert-danger alert-dismissible'>
<?= $validation->listErrors(); ?>
<button type="button" class="btn-close" data-bs-dismiss="alert" aria-label="Close"> <span aria-hidden="true"></span> </button>
</div>
<?php
}
?>
<div class="card" style="height:700px;">
<div class="card-body">
<div class='card-title d-flex'>
<h5><b>Techs. List</b></h5>
<a href='<?=base_url();?>techs/create/<?=$instid;?>' class='btn btn-sm btn-info ms-auto'> <i class='bi bi-plus-circle'></i> New Tech.</a>
</div>
<table class="table table-sm table-hover">
<thead>
<tr>
<th scope='col'>ID</th> <th scope='col'>Tech. Text</th> <th scope="col">Tech. Desc.</th> <th></th>
</tr>
</thead>
<tbody>
<?php
foreach($techs as $data) {
$techid = $data['techid'];
$techtext = $data['techtext'];
$techdesc= $data['techdesc'];
?>
<tr>
<td><?=$techid;?></td> <td><?=$techtext;?></td> <td><?=$techdesc;?></td>
<td>
<a href='<?=base_url()."techs/edit/".$techid;?>' class='btn btn-sm btn-warning'>edit</a>
</td>
</tr>
<?php
}
?>
</tbody>
</table>
</div>
</div>
</main>
<?= $this->endSection() ?>
<?= $this->section('script') ?>
<?= $this->endSection() ?>