21 lines
747 B
PHTML
21 lines
747 B
PHTML
<button id="spl_new" class="ui-button" role="button" aria-disabled="false">New</button>
|
|
<?php if (isset($this->pl)) : ?>
|
|
<button id="spl_delete" class="ui-button" role="button" aria-disabled="false">Delete</button>
|
|
<button id="spl_close" class="ui-button right-floated" role="button" aria-disabled="false">Done Editing</button>
|
|
<?php endif; ?>
|
|
|
|
<?php if (isset($this->pl)) : ?>
|
|
<h3 id="spl_name"><?php echo $this->pl->getName(); ?></h3>
|
|
<h4 id="spl_length"><?php echo $this->pl->getLength(); ?></h4>
|
|
|
|
<div class="clear"></div>
|
|
<div class="" style="clear:both; float:none; width:100%;">
|
|
<ul id="spl_sortable">
|
|
<?php echo $this->render('playlist/update.phtml') ?>
|
|
</ul>
|
|
</div>
|
|
|
|
<?php else : ?>
|
|
<div>No open playlist</div>
|
|
<?php endif; ?>
|