8 lines
181 B
PHTML
8 lines
181 B
PHTML
<?php
|
|
if(count($this->playlists) > 0) {
|
|
echo $this->partialLoop('schedule/find-playlists-partial.phtml', $this->playlists);
|
|
}
|
|
else {
|
|
echo "No Playlists Fit Duration";
|
|
}
|
|
?>
|