mirror of
https://bitbucket.org/jsuto/piler.git
synced 2024-11-08 14:41:59 +01:00
13 lines
345 B
Smarty
13 lines
345 B
Smarty
<p style="text-align:left; font-weight: bold; "><?php print $text_folders; ?>:</p>
|
|
|
|
<div id="folders" style="text-align:left;">
|
|
|
|
<?php foreach ($folders as $folder) { ?>
|
|
<input type="checkbox" id="folder_<?php print $folder['id']; ?>" name="folder_<?php print $folder['id']; ?>" /> <?php print $folder['name']; ?><br />
|
|
|
|
<?php } ?>
|
|
|
|
</div>
|
|
|
|
|