6 |
kaklik |
1 |
<form action="{F_ACTION}" method="post">
|
|
|
2 |
<!-- BEGIN confirmation -->
|
|
|
3 |
<div class="info">{L_WAITING_CONFIRMATION}</div>
|
|
|
4 |
<!-- END confirmation -->
|
|
|
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;"> </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 target="_blank" href="{picture.PREVIEW_URL_IMG}">{picture.FILE_IMG}</a>
|
|
|
20 |
</td>
|
|
|
21 |
<td class="{picture.WAITING_CLASS}" style="white-space:nowrap;">
|
|
|
22 |
<!-- BEGIN thumbnail -->
|
|
|
23 |
<a target="_blank" href="{picture.thumbnail.PREVIEW_URL_TN_IMG}">{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 |
<input type="radio" name="validate-{picture.ID_IMG}" value="true" />{L_SUBMIT}
|
|
|
31 |
<input type="radio" name="validate-{picture.ID_IMG}" value="false" />{L_DELETE}
|
|
|
32 |
</td>
|
|
|
33 |
</tr>
|
|
|
34 |
<!-- END picture -->
|
|
|
35 |
<tr>
|
|
|
36 |
<td colspan="6" align="center">
|
|
|
37 |
<input type="submit" name="submit" value="{L_SUBMIT}" class="bouton" />
|
|
|
38 |
<input type="reset" name="reset" value="{L_RESET}" class="bouton" />
|
|
|
39 |
</td>
|
|
|
40 |
</tr>
|
|
|
41 |
</table>
|
|
|
42 |
</form>
|