Files
WrenchBoardDocker/application/views/mobile/secure/mobile_market_task.php
T
2021-10-09 21:59:14 -04:00

55 lines
1.6 KiB
PHP

<div data-page="data-tables" class="page">
<!-- Begin: Navbar -->
<div class="navbar">
<div class="navbar-inner">
<div class="left">
<a href="#" onclick="SecurePage('mobiledash');" class="link icon-only back">
<i class="icon icon-back"></i>
</a>
</div>
<div class="center"><?= $page_title ?></div>
</div>
</div>
<!-- End: Navbar -->
<!-- Begin: Page Content -->
<div class="page-content">
<div class="data-table card">
<table>
<thead>
<tr>
<th class="label-cell">Marketplace</th>
</tr>
</thead>
<tbody>
<?
if ($job_no > 0) {
foreach ($job_table as $row) {
?>
<tr>
<td class="label-cell"><?= $row->title ?></td>
</tr>
<?
}
} else {
?>
<tr>
<td class="label-cell"><br><br>
There is currently no task(s) available, check back later.
</td>
</tr>
<?
}
?>
</tbody>
</table>
</div>
</div>
<!-- End: Page Content -->
</div>