Touren application
[infodrom.org/touren.infodrom.org] / templates / tour / plan.phtml
1 <div class="tour container">
2
3 <h3>Terminplanung</h3>
4
5 <table class="table" id="plan">
6   <thead>
7     <tr>
8       <th scope="col">Datum</th>
9       <th scope="col">Mein Status</th>
10     </tr>
11   </thead>
12   <tbody>
13 <?php foreach ($list as $row) { ?>
14     <tr>
15       <td><?php echo $row->start_short; ?> &ndash; <?php echo $row->end_short; ?><?php echo $row->year; ?></td>
16       <td class="bg-<?php echo $row->status_key; ?>" id="date-status" data-id="<?php echo $row->id; ?>"><?php echo $row->status_text; ?></td>
17     </tr>
18 <?php } ?>
19   </tbody>
20 </table>
21
22 <div id="legende">
23 <small class="form-text text-muted">Der Status wird durch Druck auf die Spalte geƤndert</small>
24 </div>
25
26 <?php echo $form; ?>
27
28 </div>