Touren application
[infodrom.org/touren.infodrom.org] / templates / tour / povlist.phtml
1 <table class="table table-striped table-sm">
2   <thead>
3     <tr>
4       <th scope="col">Zwischenziel</th>
5       <th scope="col">Aktionen</th>
6     </tr>
7   </thead>
8   <tbody>
9 <?php foreach ($list as $row) { ?>
10     <tr data-id="<?php echo $row->id; ?>">
11       <td><?php echo $row->destination; ?></td>
12       <td>
13         <button class="btn btn-sm btn-warning" <?php echo $is_planned ? '' : 'disabled="disabled"'; ?>data-dir="up" title="Hoch"><small>&nwarr;</small></button>
14         <button class="btn btn-sm btn-warning" <?php echo $is_planned ? '' : 'disabled="disabled"'; ?>data-dir="down" title="Runter"><small>&swarr;</small></button>
15         <button class="btn btn-sm btn-danger"  <?php echo $is_planned ? '' : 'disabled="disabled"'; ?>title="Löschen">&times;</button>
16       </td>
17     </tr>
18 <?php } ?>
19   </tbody>
20 </table>