database changes for name, searching for playlist for a show.
This commit is contained in:
parent
8d58f8fddb
commit
c1c4c4e598
130 changed files with 699 additions and 367 deletions
|
@ -0,0 +1,8 @@
|
|||
<li class="ui-widget-content">
|
||||
<div><?php echo $this->name ?></div>
|
||||
<div><?php echo $this->description ?></div>
|
||||
<div><?php echo $this->length ?></div>
|
||||
<?php if($this->state === "edited") : ?>
|
||||
<div>edited by: <?php echo $this->login ?></div>
|
||||
<?php endif ?>
|
||||
</li>
|
|
@ -0,0 +1,5 @@
|
|||
<?php
|
||||
if(count($this->playlists) > 0) {
|
||||
echo $this->partialLoop('schedule/find-playlists-partial.phtml', $this->playlists);
|
||||
}
|
||||
?>
|
0
application/views/scripts/schedule/find-playlists.phtml
Normal file
0
application/views/scripts/schedule/find-playlists.phtml
Normal file
|
@ -1 +1,9 @@
|
|||
<br /><br /><center>View script for controller <b>Schedule</b> and script/action name <b>scheduleShow</b></center>
|
||||
<div id="schedule_playlist_dialog">
|
||||
<input id="schedule_playlist_search" type="text"></input>
|
||||
<ul id="schedule_playlist_choice">
|
||||
<?php
|
||||
echo $this->partialLoop('schedule/find-playlists-partial.phtml', $this->playlists);
|
||||
?>
|
||||
</ul>
|
||||
<ul id="schedule_playlist_chosen"></ul>
|
||||
</div>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue