summaryrefslogtreecommitdiffstats
path: root/application/modules/backend/views/scripts/bootmedia/list.phtml
blob: 8d441c9ca0766574e70e90d78ca403255535faf3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<? if (!empty($this->listdata)): ?>
<? foreach ($this->listdata as $l): ?>
<div id="bootmedia-item-<?= $l['id'] ?>" class="bootmedia-item ui-corner-all">
<h3><?= $l['name'] ?></h3>
<p class="shortinfo">
kernel: <?= $l['kernel'] ?><br/>
created: <?= date("r",$l['created']) ?><br/>
</p>
<p class="description">
<b>Description: </b>
<?= $l['description'] ?>
</p>
<p class="list-context-menu">
<a href="javascript:bootmediaDelete(<?= $l['id'] ?>)" class="ui-corner-all">Delete</a>
<a href="javascript:bootmediaEdit(<?= $l['id'] ?>)" class="ui-corner-all">Edit</a>
<a href="/isos/<?= $l['identifier'] ?>/openslx.iso" class="ui-corner-all">Download</a>
</p>
</div>
<? endforeach;?>
<? endif;?>