Modified:made some changes in design of manage playlist module in admin area
This commit is contained in:
parent
e4947e9cc4
commit
bc8b73e05c
1 changed files with 15 additions and 15 deletions
|
@ -1,9 +1,8 @@
|
|||
|
||||
<!-- Manage playlist backend -->
|
||||
{$myAccountLinks = $userquery->my_account_links()}
|
||||
<div class="container manage-page">
|
||||
<div class="row cb-box">
|
||||
<div class="col-lg-10 col-md-10 col-sm-10 col-xs-12">
|
||||
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12">
|
||||
<div class="account_box">
|
||||
{if $mode =='manage_playlist'}
|
||||
<h2>{lang code='manage_playlists'}</h2>
|
||||
|
@ -24,10 +23,11 @@
|
|||
<td width="25">
|
||||
<input type="checkbox" name="checkall" onclick="checkUncheckAll(this);"/>
|
||||
</td>
|
||||
<td><strong>{lang code='vdo_title'}</strong></td>
|
||||
<td width="100"><strong>{lang code='date_added'}</strong></td>
|
||||
<td width="60" class="last_td"><strong>{lang code='total_items'}</strong></td>
|
||||
<td width="80"><strong>{lang code='View/Edit'}</strong></td>
|
||||
<td width="150"><strong>{lang code='vdo_title'}</strong></td>
|
||||
<td><strong>{lang code='Details'}</strong></td>
|
||||
<td width="130"><strong>{lang code='date_added'}</strong></td>
|
||||
<td width="80" class="last_td"><strong>{lang code='total_items'}</strong></td>
|
||||
<td width="130"><strong>{lang code='View/Edit'}</strong></td>
|
||||
<td width="80"><strong>{lang code='Delete'}</strong></td>
|
||||
</tr>
|
||||
{section name=plist loop=$playlists}
|
||||
|
@ -36,17 +36,17 @@
|
|||
<input type="checkbox" name="check_playlist[]" id="check_playlist-{$playlists[plist].playlist_id}" value="{$playlists[plist].playlist_id}" />
|
||||
</td>
|
||||
<td valign="middle">
|
||||
<!-- playlist thumb code not functional right now-->
|
||||
<!--<span>{$cbvid->action->getPlaylistThumb($playlists[plist].playlist_id)}</span> -->
|
||||
<!-- playlist name code -->
|
||||
{$playlists[plist].playlist_name|truncate:100}
|
||||
</td>
|
||||
<td valign="middle">
|
||||
<span class="label label-primary"> <strong>Owner :
|
||||
<!-- my changes -->
|
||||
<!-- changes made -->
|
||||
{assign var=obj value=$userquery->get_user_details($playlists[plist].userid)}
|
||||
{$obj['username']}
|
||||
<!-- my changes -->
|
||||
</strong></span>
|
||||
<span class="label label-primary"> <strong>Last Updated :
|
||||
{if $playlists[plist].last_update == true}
|
||||
{$playlists[plist].last_update}
|
||||
{else}Never updated{/if}
|
||||
<!-- changes made -->
|
||||
</strong></span>
|
||||
<span class="label label-primary"> <strong>Privacy : {$playlists[plist].privacy}</strong></span>
|
||||
</td>
|
||||
|
@ -112,7 +112,7 @@
|
|||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Manage playlist backend -->
|
||||
<!-- lines added for pagination -->
|
||||
{include file="$style_dir/blocks/pagination.html" }
|
||||
|
|
Loading…
Add table
Reference in a new issue