source: trunk/template/yoga/admin/waiting.tpl @ 1672

Last change on this file since 1672 was 1294, checked in by nikrou, 18 years ago

atrribute target not allowed in html strict
svn merge -r1292:1293 from branch 1.6

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.0 KB
Line 
1<!-- $Id: waiting.tpl 1294 2006-04-29 15:40:44Z nikrou $ -->
2<h2>{lang:title_waiting}</h2>
3
4<form action="{F_ACTION}" method="post" id="waiting">
5  <table style="width:100%;" >
6    <tr class="throw">
7      <th style="width:20%;">{L_CATEGORY}</th>
8      <th style="width:20%;">{L_DATE}</th>
9      <th style="width:20%;">{L_FILE}</th>
10      <th style="width:20%;">{L_THUMBNAIL}</th>
11      <th style="width:20%;">{L_AUTHOR}</th>
12      <th style="width:1px;">&nbsp;</th>
13    </tr>
14    <!-- BEGIN picture -->
15    <tr>
16      <td class="{picture.WAITING_CLASS}" style="white-space:nowrap;">{picture.CATEGORY_IMG}</td>
17      <td class="{picture.WAITING_CLASS}" style="white-space:nowrap;">{picture.DATE_IMG}</td>
18      <td class="{picture.WAITING_CLASS}" style="white-space:nowrap;">
19        <a href="{picture.PREVIEW_URL_IMG}" title="{picture.FILE_TITLE}">{picture.FILE_IMG}</a>
20      </td>
21      <td class="{picture.WAITING_CLASS}" style="white-space:nowrap;">
22        <!-- BEGIN thumbnail -->
23        <a href="{picture.thumbnail.PREVIEW_URL_TN_IMG}" title="{picture.thumbnail.FILE_TN_TITLE}">{picture.thumbnail.FILE_TN_IMG}</a>
24        <!-- END thumbnail -->
25      </td>
26      <td class="{picture.WAITING_CLASS}" style="white-space:nowrap;">
27        <a href="mailto:{picture.UPLOAD_EMAIL}">{picture.UPLOAD_USERNAME}</a>
28      </td>
29      <td class="{picture.WAITING_CLASS}" style="white-space:nowrap;">
30        <label><input type="radio" name="action-{picture.ID_IMG}" value="validate" /> {lang:Validate}</label>
31        <label><input type="radio" name="action-{picture.ID_IMG}" value="reject" /> {lang:Reject}</label>
32      </td>
33    </tr>
34    <!-- END picture -->
35  </table>
36
37  <p class="bottomButtons">
38    <input type="hidden" name="list" value="{LIST}" />
39    <input type="submit" name="submit" value="{lang:Submit}" {TAG_INPUT_ENABLED}/>
40    <input type="submit" name="validate-all" value="{lang:Validate All}" {TAG_INPUT_ENABLED}/>
41    <input type="submit" name="reject-all" value="{lang:Reject All}" {TAG_INPUT_ENABLED}/>
42    <input type="reset" value="{lang:Reset}" />
43  </p>
44
45</form>
Note: See TracBrowser for help on using the repository browser.