c3lf-system-3/templates/matches.php
2018-12-27 21:56:30 +01:00

66 lines
2.1 KiB
PHP

<?php
/**
* Created by PhpStorm.
* User: jedi
* Date: 12/27/18
* Time: 4:48 AM
*/
?>
<div class="container-fluid">
<!-- Breadcrumbs-->
<ol class="breadcrumb">
<li class="breadcrumb-item">
<a href="#">Dashboard</a>
</li>
<li class="breadcrumb-item active">Matches</li>
</ol>
<!-- DataTables Example -->
<div class="card mb-3">
<div class="card-header">
<i class="fas fa-table"></i>
Data Table Example</div>
<div class="card-body">
<div class="table-responsive">
<table class="table table-bordered" id="dataTable" width="100%" cellspacing="0">
<thead>
<tr>
<th>ID</th>
<th>gefunden</th>
<th>verloren</th>
</tr>
</thead>
<tfoot>
<tr>
<th>ID</th>
<th>gefunden</th>
<th>verloren</th>
</tr>
</tfoot>
<tbody>
<?php
foreach( get_matches() as $item){
?>
<tr>
<td><?php echo $item["id"]; ?></td>
<td><?php echo $item["f_desc"]; ?></td>
<td><?php echo $item["l_desc"]; ?></td>
</tr>
<?php
}
?>
</tbody>
</table>
</div>
</div>
<div class="card-footer small text-muted">Updated yesterday at 11:59 PM</div>
</div>
<p class="small text-center text-muted my-5">
<em>More table examples coming soon...</em>
</p>
</div>
<!-- /.container-fluid -->