| 1234567891011121314151617181920212223 |
- <table class="table table-striped">
- <thead>
- <tr>
- <th>Typ</th>
- <th>Name</th>
- <th>Vorlage</th>
- <th>Erstellt am</th>
- <th>Letzte Änderung</th>
- </tr>
- </thead>
- <?php
- foreach($this->_['documents'] as $document) {
- echo '<tr>';
- echo '<td>' . $document->getType() . '</td>';
- echo '<td>' . $document->getFileName() . '</td>';
- echo '<td>' . $document->getDraft() . '</td>';
- echo '<td>' . $document->getCreated() . '</td>';
- echo '<td>' . $document->getLastChange() . '</td>';
- echo '</tr>';
- }
- ?>
- </table>
- <a id="new-document" href="ajax.php?action=getNewDocumentBox" type="button" class="btn btn-success fancybox.ajax">Neues Dokument</a>
|