45 lines
1.5 KiB
HTML
45 lines
1.5 KiB
HTML
<legend>Bug Trackers</legend>
|
|
{PAGINATION}
|
|
<form action="{ROOT_URL}admin/bugtracker/delete" method="post">
|
|
<table class="table table-striped">
|
|
<thead>
|
|
<tr>
|
|
<th style="width: 30%">Title</th>
|
|
<th style="width: 40%">Description</th>
|
|
<th style="width: 10%">Status</th>
|
|
<th style="width: 5%">Time Submitted</th>
|
|
<th style="width: 5%"></th>
|
|
<th style="width: 5%"></th>
|
|
<th style="width: 5%">
|
|
<INPUT type="checkbox" onchange="checkAll(this)" name="check.br" value="T_[]"/>
|
|
</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{LOOP}
|
|
<tr>
|
|
<td><a href="{ROOT_URL}admin/bugtracker/view/{ID}">{title}</a></td>
|
|
<td>{description}</td>
|
|
<td>{status}</td>
|
|
<td align="center">{DTC}{time}{/DTC}</td>
|
|
<td><a href="{ROOT_URL}admin/bugtracker/edit/{ID}" class="btn btn-sm btn-warning" role="button"><i class="glyphicon glyphicon-edit"></i></a></td>
|
|
<td><a href="{ROOT_URL}admin/bugtracker/delete/{ID}" class="btn btn-sm btn-danger" role="button"><i class="glyphicon glyphicon-trash"></i></a></td>
|
|
<td>
|
|
<input type="checkbox" value="{ID}" name="T_[]">
|
|
</td>
|
|
</tr>
|
|
{/LOOP}
|
|
{ALT}
|
|
<tr>
|
|
<td align="center" colspan="7">
|
|
No results to show.
|
|
</td>
|
|
</tr>
|
|
{/ALT}
|
|
</tbody>
|
|
</table>
|
|
<button name="submit" value="submit" type="submit" class="btn btn-sm btn-danger">Delete</button>
|
|
<a href="{ROOT_URL}admin/bugtracker/create" class="btn btn-sm btn-primary" role="button">Create</a>
|
|
</form>
|
|
<br />
|
|
<a href="{ROOT_URL}admin/bugtracker/clear">clear all</a> |