first commit
This commit is contained in:
@@ -0,0 +1,41 @@
|
||||
<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>
|
||||
Reference in New Issue
Block a user