will display in the UI what is scheduled in a show when you add things.
This commit is contained in:
parent
4d8f28f3fd
commit
ad869e0f7f
5 changed files with 37 additions and 11 deletions
|
@ -1,2 +0,0 @@
|
|||
<h3>First header</h3>
|
||||
<div>First content</div>
|
24
application/views/scripts/schedule/scheduled-content.phtml
Normal file
24
application/views/scripts/schedule/scheduled-content.phtml
Normal file
|
@ -0,0 +1,24 @@
|
|||
<?php if(count($this->showContent) > 0) : ?>
|
||||
<?php foreach($this->showContent as $pl) : ?>
|
||||
<li id="g_<?php echo $pl["pl_group"] ?>" class="ui-widget-content">
|
||||
<h3>
|
||||
<div>
|
||||
<span><?php echo $pl["pl_name"] ?></span>
|
||||
<span><?php echo $pl["pl_length"] ?></span>
|
||||
</div>
|
||||
<div><?php echo $pl["pl_creator"] ?></div>
|
||||
<div><?php echo $pl["pl_description"] ?></div>
|
||||
</h3>
|
||||
<div>
|
||||
<?php foreach($pl["pl_content"] as $file) : ?>
|
||||
<div>
|
||||
<span><?php echo $file["f_name"] ?></span>
|
||||
<span><?php echo $file["f_length"] ?></span>
|
||||
</div>
|
||||
<div><?php echo $file["f_artist"] ?></div>
|
||||
<?php endforeach; ?>
|
||||
</div>
|
||||
</li>
|
||||
<?php endforeach; ?>
|
||||
<?php endif; ?>
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue