Files
dev-chiefworks f76abffdcd first commit
2022-05-31 16:21:53 -04:00

42 lines
1.1 KiB
PHP

<table class="table">
<thead>
<tr>
<th>Data Point</th>
<th>Value</th>
<th>Score</th>
</tr>
</thead>
<tbody>
<tr>
<td>Date of Travel</td>
<td><?=$parsed['date_value']?></td>
<td><?=$parsed['date_score']?></td>
</tr>
<tr class="success">
<td>Start Location</td>
<td><?=$parsed['location_start_value']?></td>
<td><?=$parsed['location_start_score']?></td>
</tr>
<tr class="danger">
<td>End Location</td>
<td><?=$parsed['location_end_value']?></td>
<td><?=$parsed['location_end_score']?></td>
</tr>
<tr class="info">
<td>Distance</td>
<td><?=$parsed['distance_value']?></td>
<td><?=$parsed['distance_score']?></td>
</tr>
<tr class="warning">
<td>Duration</td>
<td><?=$parsed['duration_value']?></td>
<td><?=$parsed['duration_score']?></td>
</tr>
<tr class="active">
<td>Cost</td>
<td><?=$parsed['cost_value']?></td>
<td><?=$parsed['cost_score']?></td>
</tr>
</tbody>
</table>