40 lines
1.1 KiB
PHP
40 lines
1.1 KiB
PHP
<?= $this->extend('layouts/main.php') ?>
|
|
|
|
<?= $this->section('content') ?>
|
|
|
|
<main id="main" class="main">
|
|
<div class="pagetitle">
|
|
<h1>Dictionary Test</h1>
|
|
</div>
|
|
|
|
<!-- Recent Result -->
|
|
<div class="card" style="height:700px;">
|
|
<div class="card-body">
|
|
<div class='card-title d-flex'>
|
|
<h5><b>Test List</b></h5>
|
|
<a href='<?=base_url();?>tests/create' class='btn btn-sm btn-info ms-auto'> <i class='bi bi-plus-circle'></i> New Test</a>
|
|
</div>
|
|
<!-- Small tables -->
|
|
<table class="table table-sm table-hover">
|
|
<thead>
|
|
<tr>
|
|
<th scope='col'>Testcode</th> <th scope="col">Testname</th> <th></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<?php
|
|
foreach($tests as $data) {
|
|
$testid = $data['testid'];
|
|
$testcode = $data['testcode'];
|
|
$testname= $data['testname'];
|
|
?>
|
|
<tr> <td><?=$testcode;?></td> <td><?=$testname;?></td> <td><a href='<?=base_url()."tests/edit/".$testid;?>' class='btn btn-sm btn-warning'>edit</a></td> </tr>
|
|
<?php
|
|
}
|
|
?>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</main>
|
|
<?= $this->endSection() ?>
|