source: trunk/admin/template/yoga/admin/upload.tpl @ 2390

Last change on this file since 2390 was 2390, checked in by vdigital, 16 years ago

Admin isolation: Copy of admin templates in admin folder.
(Before previous admin templates removal).
Some of css simplification (in admin only currently.

  • Property svn:eol-style set to LF
  • Property svn:keywords set to Author Date Id Revision
File size: 2.2 KB
Line 
1{* $Id: upload.tpl 2390 2008-06-22 08:45:28Z vdigital $ *}
2<div class="titrePage">
3  {$TABSHEET}
4  <h2>{'waiting'|@translate} {$TABSHEET_TITLE}</h2>
5</div>
6
7<h3>{'title_upload'|@translate}</h3>
8
9<form action="{$F_ACTION}" method="post" id="waiting">
10  <table style="width:99%;" >
11    <tr class="throw">
12      <th style="width:20%;">{'category'|@translate}</th>
13      <th style="width:20%;">{'Date'|@translate}</th>
14      <th style="width:20%;">{'file'|@translate}</th>
15      <th style="width:20%;">{'thumbnail'|@translate}</th>
16      <th style="width:20%;">{'Author'|@translate}</th>
17      <th style="width:1px;">&nbsp;</th>
18    </tr>
19   
20    {if not empty($pictures) }
21    {foreach from=$pictures item=picture name=picture_loop}
22    <tr class="{if $smarty.foreach.picture_loop.index is odd}row1{else}row2{/if}">
23      <td style="white-space:nowrap;">{$picture.CATEGORY_IMG}</td>
24      <td style="white-space:nowrap;">{$picture.DATE_IMG}</td>
25      <td style="white-space:nowrap;">
26        <a href="{$picture.PREVIEW_URL_IMG}" title="{$picture.FILE_TITLE}">{$picture.FILE_IMG}</a>
27      </td>
28      <td style="white-space:nowrap;">
29        {if not empty($picture.thumbnail) }
30        <a href="{$picture.thumbnail.PREVIEW_URL_TN_IMG}" title="{$picture.thumbnail.FILE_TN_TITLE}">{$picture.thumbnail.FILE_TN_IMG}</a>
31        {/if}
32      </td>
33      <td style="white-space:nowrap;">
34        <a href="mailto:{$picture.UPLOAD_EMAIL}">{$picture.UPLOAD_USERNAME}</a>
35      </td>
36      <td style="white-space:nowrap;">
37        <label><input type="radio" name="action-{$picture.ID_IMG}" value="validate" /> {'Validate'|@translate}</label>
38        <label><input type="radio" name="action-{$picture.ID_IMG}" value="reject" /> {'Reject'|@translate}</label>
39      </td>
40    </tr>
41    {/foreach}
42    {/if}
43  </table>
44
45  <p class="bottomButtons">
46    <input type="hidden" name="list" value="{$LIST}" />
47    <input class="submit" type="submit" name="submit" value="{'Submit'|@translate}" {$TAG_INPUT_ENABLED}/>
48    <input class="submit" type="submit" name="validate-all" value="{'Validate All'|@translate}" {$TAG_INPUT_ENABLED}/>
49    <input class="submit" type="submit" name="reject-all" value="{'Reject All'|@translate}" {$TAG_INPUT_ENABLED}/>
50    <input class="submit" type="reset" value="{'Reset'|@translate}" />
51  </p>
52
53</form>
Note: See TracBrowser for help on using the repository browser.