improved folder handling

This commit is contained in:
SJ
2015-10-02 13:19:40 +02:00
parent a145554ea3
commit 3ea8ed50a5
4 changed files with 138 additions and 1 deletions

View File

@ -26,13 +26,14 @@
<table id="search1" class="table table-striped table-condensed">
<thead>
<th><?php print $_['text_folder']; ?> <?php print $_['text_name']; ?></th>
<th><?php print $text_folder; ?></th>
<th>&nbsp;</th>
</thead>
<tbody>
<?php foreach($extra_folders as $folder) { ?>
<tr>
<td><?php print $folder['name']; ?></td>
<td><a href="index.php?route=folder/edit&id=<?php print $folder['id']; ?>"><?php print $text_edit; ?></a></td>
<td><a href="/folders.php?id=<?php print $folder['id']; ?>&remove=1"><?php print $text_remove; ?></a></td>
</tr>
<?php } ?>