mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-07-25 16:44:28 +00:00
Task #408: Statusgründe
This commit is contained in:
@@ -0,0 +1,39 @@
|
||||
<?php
|
||||
$this->load->view('templates/header', array('title' => 'StatusgrundList', 'tablesort' => true, 'tableid' => 't1', 'headers' => '3:{sorter:false}'));
|
||||
?>
|
||||
|
||||
<div class="row">
|
||||
<div class="span4">
|
||||
<h2>Status</h2>
|
||||
<table id="t1" class="tablesorter">
|
||||
<thead>
|
||||
<tr>
|
||||
<th class='table-sortable:default'>Status</th>
|
||||
<th>beschreibung</th>
|
||||
<th>anmerkung</th>
|
||||
<th></th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<?php foreach ($status as $s): ?>
|
||||
<tr>
|
||||
<td>
|
||||
<a href="listGrund/<?php echo $s->status_kurzbz; ?>" target="StatusgrundTop" onClick="parent.document.getElementById('StatusgrundBottom').src=''">
|
||||
<?php echo $s->status_kurzbz; ?>
|
||||
</a>
|
||||
</td>
|
||||
<td><?php echo $s->beschreibung; ?></td>
|
||||
<td><?php echo $s->anmerkung; ?></td>
|
||||
<td>
|
||||
<a href="editStatus/<?php echo $s->status_kurzbz; ?>" target="StatusgrundBottom" onClick="parent.document.getElementById('StatusgrundTop').src=''">
|
||||
Edit
|
||||
</a>
|
||||
</td>
|
||||
</tr>
|
||||
<?php endforeach ?>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user