clipbucket/upload/styles/cbv2new/layout/view_playlist.html

25 lines
579 B
HTML
Raw Normal View History

<h2>{$playlist.playlist_name}</h2>
<p>
{if $playlist.description}
{$playlist.description}
{else}
<em>{lang code='No description'}</em>
{/if}
</p>
<p>
{$playlist.runtime|setTime} <br/>
{$playlist.date_added|niceTime} <br/>
{$playlist.last_update|niceTime} <br/>
{$playlist.played|number_format} {lang code='views'} <br/>
{$playlist.total_items|number_format} {lang code='videos'}
</p>
<p>
<h2>Videos</h2>
{foreach from=$playlist.videos item=video}
{$video.title} <br/>
{/foreach}
</p>