clipbucket/upload/admin_area/styles/clipbucketblue/layout/editor_pick.html

28 lines
1.1 KiB
HTML
Raw Normal View History

2009-08-25 12:16:42 +00:00
<div class="setting_title">Editor's Pick<br>
</div>
<table width="800" border="0" cellspacing="2" cellpadding="0">
<tr bgcolor="{$bgcolor}">
<td width="300">Title</td>
<td width="200">Date Added</td>
<td>Action</td>
</tr>
</table>
<table width="800" border="0" cellspacing="2" cellpadding="0">
{assign var = bgcolor value = ""}
{section name=v_list loop=$videos}
{if $videos[v_list].title != ""}
<tr bgcolor="{$bgcolor}">
<td width="300">{$videos[v_list].title}</td>
<td width="200">{$videos[v_list].date_added}</td>
<td><a href="?remove={$videos[v_list].pick_id}">Remove From Editor's Pick</a> {if $smarty.section.v_list.iteration !=1} <a href="?up={$videos[v_list].pick_id}"><img src="{$imageurl}/up.png" width="14" height="14" border="0" /></a>{/if}{if $smarty.section.v_list.iteration !=$total_videos}<a href="?down={$videos[v_list].pick_id}"><img src="{$imageurl}/down.png" width="14" height="14" border="0" /></a>{/if}</td>
</tr>
{if $bgcolor == ""}
{assign var = bgcolor value = "#EEEEEE"}
{else}
{assign var = bgcolor value = ""}
{/if}
{/if}
{/section}
</table>