1 | <div class="concours"> |
---|
2 | <form method="post" action="{$CONCOURS_F_ACTIONS}" class="concours"> |
---|
3 | <fieldset> |
---|
4 | <legend>Concours Photo</legend> |
---|
5 | <table> |
---|
6 | <tr> |
---|
7 | <td align="left" colspan="2"><b>Concours : {$concours_infos.name} </b> |
---|
8 | <i>({$concours_infos.descr})</i> |
---|
9 | </td> |
---|
10 | <td align="right" colspan="2"> |
---|
11 | {'concours_global_user_note'|@translate} : <input type="text" size="4" maxlength="4" name="global_note" value="{$concours_infos.note}" disabled="disabled"/> |
---|
12 | </td> |
---|
13 | <td> |
---|
14 | </td> |
---|
15 | </tr> |
---|
16 | <tr><td colspan="5"><br></td></tr> |
---|
17 | {foreach from=$concours_criteria item=concours_criteria} |
---|
18 | <tr> |
---|
19 | {if $concours_criteria.level == 1} |
---|
20 | <td align="left" colspan="2"><b><u>{$concours_criteria.name}</u></b> |
---|
21 | (<b><i>{$concours_criteria.lib}</i></b>) </td> |
---|
22 | {else} |
---|
23 | <td> </td> |
---|
24 | <td><i>{$concours_criteria.name} </i></td> |
---|
25 | {/if} |
---|
26 | {if $concours_criteria.level == 1} |
---|
27 | <td align="left" > </td> |
---|
28 | {else} |
---|
29 | <td><i>{$concours_criteria.lib} </i></td> |
---|
30 | {/if} |
---|
31 | {if $concours_criteria.nosub} |
---|
32 | <td><input type="text" size="4" maxlength="4" value="{$concours_criteria.val}" name="{$concours_criteria.id}" /></td> |
---|
33 | <td><i>(Min={$concours_criteria.min} ;Max={$concours_criteria.max}) </i></td> |
---|
34 | {else} |
---|
35 | <td colspan="2"> </td> |
---|
36 | {/if} |
---|
37 | </tr> |
---|
38 | {/foreach} |
---|
39 | <tr><td colspan="5"><br></td></tr> |
---|
40 | <tr> |
---|
41 | <td colspan="2">{'concours_comment'|@translate} </td> |
---|
42 | <td colspan="3"> |
---|
43 | <textarea cols="50" rows="4" name="concours_comment" id="concours_comment">{$CONCOURS_COMMENT}</textarea> |
---|
44 | </td> |
---|
45 | </tr> |
---|
46 | |
---|
47 | </table> |
---|
48 | <p> |
---|
49 | {if $CONCOURS_CHANGE_SCORE} |
---|
50 | <input type="submit" name="concours_submit" value="{'concours_save'|@translate}" /> |
---|
51 | <input type="submit" name="concours_raz" value="{'concours_RAZ'|@translate}" onclick="return confirm('{'Are you sure?'|@translate|@escape:'javascript'}');"> |
---|
52 | {/if} |
---|
53 | </p> |
---|
54 | </fieldset> |
---|
55 | </form> |
---|
56 | |
---|
57 | </div> |
---|