Touren application
[infodrom.org/touren.infodrom.org] / templates / tour / datelist.phtml
1 <table class="table table-striped table-sm">
2   <thead>
3     <tr>
4       <th scope="col">Datum</th>
5       <th scope="col">#ok</th>
6       <th scope="col">#evtl.</th>
7       <th scope="col">#nein</th>
8     </tr>
9   </thead>
10   <tbody>
11 <?php foreach ($list as $row) { ?>
12     <tr<?php echo $tour_date_id == $row->id ? ' class="bg-ok"' : ($row->maybe ? ' class="bg-maybe"' : '') ?>>
13          <td><?php echo $row->start_short; ?> &ndash; <?php echo $row->end_short; ?><?php echo $row->year; ?></td>
14       <td><?php echo $row->sum_ok; ?></td>
15       <td><?php echo $row->sum_maybe; ?></td>
16       <td><?php echo $row->sum_not; ?></td>
17     </tr>
18 <?php } ?>
19   </tbody>
20 </table>