44 lines
2.0 KiB
HTML
44 lines
2.0 KiB
HTML
<div class="context-main-bg context-main p-3">
|
|
<legend class="text-center">Works in Progress</legend>
|
|
<hr>
|
|
{ADMIN_BREADCRUMBS}
|
|
<form action="{ROOT_URL}admin/wip/delete" method="post">
|
|
<table class="table table-striped">
|
|
<thead>
|
|
<tr>
|
|
<th scope="col" style="width: 30%">Title</th>
|
|
<th scope="col" style="width: 20%">Progress</th>
|
|
<th scope="col" style="width: 20%">Start Date</th>
|
|
<th scope="col" style="width: 10%"></th>
|
|
<th scope="col" style="width: 10%"></th>
|
|
<th scope="col" style="width: 10%">
|
|
<input type="checkbox" onchange="checkAll(this)" name="check.b" value="P_[]">
|
|
</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{LOOP}
|
|
<tr>
|
|
<td><a href="{ROOT_URL}admin/wip/view/{ID}" class="text-decoration-none">{title}</a></td>
|
|
<td>{progress}</td>
|
|
<td>{startDate}</td>
|
|
<td><a href="{ROOT_URL}admin/wip/edit/{ID}" class="btn btn-sm btn-warning" role="button"><i class="fa fa-fw fa-pencil"></i></a></td>
|
|
<td><a href="{ROOT_URL}admin/wip/delete/{ID}" class="btn btn-sm btn-danger" role="button"><i class="fa fa-fw fa-trash"></i></a></td>
|
|
<td>
|
|
<input type="checkbox" value="{ID}" name="P_[]">
|
|
</td>
|
|
</tr>
|
|
{/LOOP}
|
|
{ALT}
|
|
<tr>
|
|
<td colspan="7">
|
|
No results to show.
|
|
</td>
|
|
</tr>
|
|
{/ALT}
|
|
</tbody>
|
|
</table>
|
|
<a href="{ROOT_URL}admin/wip/create" class="btn btn-sm btn-primary" role="button">Create</a>
|
|
<button name="submit" value="submit" type="submit" class="btn btn-sm btn-danger"><i class="fa fa-fw fa-trash"></i></button>
|
|
</form>
|
|
</div> |