This commit is contained in:
Joey Kimsey
2025-01-27 00:22:58 -05:00
parent a9a2cae8e6
commit 75a01c9ffb
3 changed files with 91 additions and 85 deletions

View File

@ -1,41 +1,44 @@
<legend>Portfolio Links</legend> <div class="context-main-bg context-main p-3">
{PAGINATION} <legend class="text-center">Portfolio Links</legend>
<form action="{ROOT_URL}admin/portfolio/delete" method="post"> <hr>
<table class="table table-striped"> {ADMIN_BREADCRUMBS}
<thead> <form action="{ROOT_URL}admin/portfolio/delete" method="post">
<tr> <table class="table table-striped">
<th style="width: 30%">title</th> <thead>
<th style="width: 30%">section</th> <tr>
<th style="width: 25%">url</th> <th style="width: 30%">title</th>
<th style="width: 5%"></th> <th style="width: 30%">section</th>
<th style="width: 5%"></th> <th style="width: 25%">url</th>
<th style="width: 5%"> <th style="width: 5%"></th>
<INPUT type="checkbox" onchange="checkAll(this)" name="check.b" value="B_[]"/> <th style="width: 5%"></th>
</th> <th style="width: 5%">
</tr> <INPUT type="checkbox" onchange="checkAll(this)" name="check.b" value="P_[]"/>
</thead> </th>
<tbody> </tr>
{LOOP} </thead>
<tr> <tbody>
<td><a href="{ROOT_URL}admin/portfolio/view/{ID}">{title}</a></td> {LOOP}
<td>{section}</td> <tr>
<td>{url}</td> <td><a href="{ROOT_URL}admin/portfolio/view/{ID}" class="text-decoration-none">{title}</a></td>
<td><a href="{ROOT_URL}admin/portfolio/edit/{ID}" class="btn btn-sm btn-warning" role="button"><i class="glyphicon glyphicon-edit"></i></a></td> <td>{section}</td>
<td><a href="{ROOT_URL}admin/portfolio/delete/{ID}" class="btn btn-sm btn-danger" role="button"><i class="glyphicon glyphicon-trash"></i></a></td> <td>{url}</td>
<td> <td><a href="{ROOT_URL}admin/portfolio/edit/{ID}" class="btn btn-sm btn-warning" role="button"><i class="fa fa-fw fa-pencil"></i></a></td>
<input type="checkbox" value="{ID}" name="P_[]"> <td><a href="{ROOT_URL}admin/portfolio/delete/{ID}" class="btn btn-sm btn-danger" role="button"><i class="fa fa-fw fa-trash"></i></a></td>
</td> <td>
</tr> <input type="checkbox" value="{ID}" name="P_[]">
{/LOOP} </td>
{ALT} </tr>
<tr> {/LOOP}
<td colspan="7"> {ALT}
No results to show. <tr>
</td> <td colspan="7">
</tr> No results to show.
{/ALT} </td>
</tbody> </tr>
</table> {/ALT}
<a href="{ROOT_URL}admin/portfolio/create" class="btn btn-sm btn-primary" role="button">Create</a> </tbody>
<button name="submit" value="submit" type="submit" class="btn btn-sm btn-danger">Delete</button> </table>
</form> <a href="{ROOT_URL}admin/portfolio/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>

View File

@ -1,43 +1,46 @@
<legend>Resume Positions</legend> <div class="context-main-bg context-main p-3">
{PAGINATION} <legend class="text-center">Resume Positions</legend>
<form action="{ROOT_URL}admin/resume/delete" method="post"> <hr>
<table class="table table-striped"> {ADMIN_BREADCRUMBS}
<thead> <form action="{ROOT_URL}admin/resume/delete" method="post">
<tr> <table class="table table-striped">
<th style="width: 30%">Name</th> <thead>
<th style="width: 20%">Position</th> <tr>
<th style="width: 10%">Start</th> <th style="width: 30%">Name</th>
<th style="width: 10%">End</th> <th style="width: 20%">Position</th>
<th style="width: 10%"></th> <th style="width: 10%">Start</th>
<th style="width: 10%"></th> <th style="width: 10%">End</th>
<th style="width: 10%"> <th style="width: 10%"></th>
<INPUT type="checkbox" onchange="checkAll(this)" name="check.b" value="B_[]"/> <th style="width: 10%"></th>
</th> <th style="width: 10%">
</tr> <INPUT type="checkbox" onchange="checkAll(this)" name="check.b" value="P_[]"/>
</thead> </th>
<tbody> </tr>
{LOOP} </thead>
<tr> <tbody>
<td><a href="{ROOT_URL}admin/resume/view/{ID}">{name}</a></td> {LOOP}
<td>{position}</td> <tr>
<td>{prettyStart}</td> <td><a href="{ROOT_URL}admin/resume/view/{ID}" class="text-decoration-none">{name}</a></td>
<td>{prettyEnd}</td> <td>{position}</td>
<td><a href="{ROOT_URL}admin/resume/edit/{ID}" class="btn btn-sm btn-warning" role="button"><i class="glyphicon glyphicon-edit"></i></a></td> <td>{prettyStart}</td>
<td><a href="{ROOT_URL}admin/resume/delete/{ID}" class="btn btn-sm btn-danger" role="button"><i class="glyphicon glyphicon-trash"></i></a></td> <td>{prettyEnd}</td>
<td> <td><a href="{ROOT_URL}admin/resume/edit/{ID}" class="btn btn-sm btn-warning" role="button"><i class="fa fa-fw fa-pencil"></i></a></td>
<input type="checkbox" value="{ID}" name="P_[]"> <td><a href="{ROOT_URL}admin/resume/delete/{ID}" class="btn btn-sm btn-danger" role="button"><i class="fa fa-fw fa-trash"></i></a></td>
</td> <td>
</tr> <input type="checkbox" value="{ID}" name="P_[]">
{/LOOP} </td>
{ALT} </tr>
<tr> {/LOOP}
<td colspan="7"> {ALT}
No results to show. <tr>
</td> <td colspan="7">
</tr> No results to show.
{/ALT} </td>
</tbody> </tr>
</table> {/ALT}
<a href="{ROOT_URL}admin/resume/create" class="btn btn-sm btn-primary" role="button">Create</a> </tbody>
<button name="submit" value="submit" type="submit" class="btn btn-sm btn-danger">Delete</button> </table>
</form> <a href="{ROOT_URL}admin/resume/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>

View File

@ -19,7 +19,7 @@
<tbody> <tbody>
{LOOP} {LOOP}
<tr> <tr>
<td><a href="{ROOT_URL}admin/wip/view/{ID}">{title}</a></td> <td><a href="{ROOT_URL}admin/wip/view/{ID}" class="text-decoration-none">{title}</a></td>
<td>{progress}</td> <td>{progress}</td>
<td>{startDate}</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/edit/{ID}" class="btn btn-sm btn-warning" role="button"><i class="fa fa-fw fa-pencil"></i></a></td>