| 123456789101112131415161718192021222324252627 |
- <?php
- // TODO: Make this MVC-style
- $documents = getDocumentsByLabelId(2); // TODO: get documents via labelID
- //print_r($documents);
- ?>
- <table class="table table-striped">
- <thead>
- <tr>
- <th>Name</th>
- <th>Vorlage</th>
- <th>Erstellt am</th>
- <th>Letzte Änderung</th>
- </tr>
- </thead>
- <?php
- foreach($documents as $document) {
- echo '<tr>';
- echo '<td>' . $document->getFileName() . '</td>';
- echo '<td>' . $document->getDraft() . '</td>';
- echo '<td>' . $document->getCreated() . '</td>';
- echo '<td>' . $document->getLastChange() . '</td>';
- echo '</tr>';
- }
- ?>
- </table>
|