Happy New Year!
[platal.git] / templates / admin / validation.tpl
CommitLineData
0337d704 1{**************************************************************************}
2{* *}
5e1513f6 3{* Copyright (C) 2003-2011 Polytechnique.org *}
0337d704 4{* http://opensource.polytechnique.org/ *}
5{* *}
6{* This program is free software; you can redistribute it and/or modify *}
7{* it under the terms of the GNU General Public License as published by *}
8{* the Free Software Foundation; either version 2 of the License, or *}
9{* (at your option) any later version. *}
10{* *}
11{* This program is distributed in the hope that it will be useful, *}
12{* but WITHOUT ANY WARRANTY; without even the implied warranty of *}
13{* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *}
14{* GNU General Public License for more details. *}
15{* *}
16{* You should have received a copy of the GNU General Public License *}
17{* along with this program; if not, write to the Free Software *}
65934312 18
0337d704 19{* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA *}
20{* *}
21{**************************************************************************}
22
65934312
FB
23<script type="text/javascript">//<![CDATA[
24{literal}
cbc404da
VZ
25function toggleField(name, id, obj) {
26 $("#" + name + "_" + id).toggle();
65934312
FB
27}
28{/literal}
29//]]></script>
30
0337d704 31<h1>Validation</h1>
65934312 32
0337d704 33
34{if $vit->total()}
35
cfb96867 36{counter print=false start=0 assign=hidden}
37
e654517d 38{iterate item=valid from=$vit}
cfb96867 39{assign var=type value=$valid->type}
e33b29e5 40{if !t($hide_requests[$type]) && !($valid->requireAdmin && !$isAdmin)}
0337d704 41<br />
42<table class="bicol">
43 <tr>
fa33f7c6 44 <th colspan="2"><a id="valid{$valid->id()}"></a>{$valid->type}</th>
0337d704 45 </tr>
46 <tr>
47 <td class="titre" style="width: 20%">Demandeur&nbsp;:</td>
48 <td>
09e54905
SJ
49 {if $valid->user->hasProfile()}
50 {assign var="profile" value=$valid->user->profile()}
51 <a href="profile/{$profile->hrpid}" class="popup2">
52 {/if}
53 {$valid->user->fullName("promo")}
0337d704 54 </a>
55 </td>
56 </tr>
3379baa5 57 {if $valid->profile && !$valid->userIsProfileOwner}
f9967b19
SJ
58 <tr>
59 <td class="titre" style="width: 20%">Profil concerné&nbsp;:</td>
60 <td>
61 <a href="profile/{$valid->profile->hrpid}" class="popup2">
62 {$valid->profile->fullName("promo")}
63 </a>
64 </td>
65 </tr>
66 {/if}
4aec8eff 67 <tr>
68 <td class="titre" style="width: 20%">Date de demande&nbsp;:</td>
69 <td>
70 {$valid->stamp|date_format}
71 </td>
72 </tr>
0337d704 73 {include file=$valid->formu()}
6aa01fed 74 {if $valid->editor()}
fe30a442 75 <tr onclick="toggleField('edit', '{$valid->id()}')" style="cursor: pointer">
65934312 76 <th colspan="2">
cbc404da 77 {if $preview_id neq $valid->id()}
65934312 78 <div style="float: left">
fe30a442 79 {icon name="add"}
65934312
FB
80 </div>
81 {/if}
fe30a442 82 Éditer
65934312
FB
83 </th>
84 </tr>
85 <tr {if $preview_id neq $valid->id()}style="display: none"{/if} id="edit_{$valid->id()}">
6aa01fed 86 <td colspan="2" class="center">
65934312 87 <form enctype="multipart/form-data" action="{$platal->pl_self(0)}/edit/{$valid->id()}#valid{$valid->id()}" method="post">
e61326ed 88 {xsrf_token_field}
6aa01fed 89 <div>
90 {include file=$valid->editor()}
5daf68f6 91 <input type="hidden" name="uid" value="{$valid->user->id()}" />
6aa01fed 92 <input type="hidden" name="type" value="{$valid->type}" />
93 <input type="hidden" name="stamp" value="{$valid->stamp}" />
94 <br />
fe30a442 95 <input type="submit" name="edit" value="Éditer" />
6aa01fed 96 </div>
97 </form>
98 </td>
99 </tr>
100 {/if}
fe30a442 101 <tr onclick="toggleField('comment', '{$valid->id()}')" style="cursor: pointer">
65934312
FB
102 <th colspan='2'>
103 {if $valid->comments|@count eq 0}
104 <div style="float: left">
fe30a442 105 {icon name="add"}
65934312
FB
106 </div>
107 {/if}
108 Commentaires
109 </th>
110 </tr>
0337d704 111 {foreach from=$valid->comments item=c}
112 <tr class="{cycle values="impair,pair"}">
113 <td class="titre">
7b2413f6 114 <a href="profile/{$c[0]}" class="popup2">{$c[0]}</a>
0337d704 115 </td>
716c76f6 116 <td>{$c[1]|nl2br}</td>
0337d704 117 </tr>
118 {/foreach}
65934312 119 <tr {if $valid->comments|@count eq 0}style="display: none"{/if} id="comment_{$valid->id()}">
0337d704 120 <td colspan='2' class='center'>
86f0a6af 121 <form action="admin/validate" method="post">
e61326ed 122 {xsrf_token_field}
0337d704 123 <div>
5daf68f6 124 <input type="hidden" name="uid" value="{$valid->user->id()}" />
0337d704 125 <input type="hidden" name="type" value="{$valid->type}" />
126 <input type="hidden" name="stamp" value="{$valid->stamp}" />
4791ff77 127 <input type="hidden" name="formid" value="{0|rand:65535}" />
0337d704 128 <textarea rows="3" cols="50" name="comm"></textarea>
129 <br />
130 <input type="submit" name="hold" value="Commenter" />
131 </div>
132 </form>
133 </td>
134 </tr>
fe30a442
SJ
135 <tr>
136 <th colspan='2'>
137 {if $preview_id neq $valid->id()}
138 <div style="float: left">
139 {icon name="null"}
140 </div>
141 {/if}
142 Réponse
143 </th>
144 </tr>
0337d704 145 <tr>
fba760d2 146 <td colspan='2' {popup caption="Règles de validation" text=$valid->ruleText()}>
86f0a6af 147 <form action="admin/validate" method="post">
e61326ed 148 {xsrf_token_field}
0337d704 149 <div>
e8439508 150 Réponse préremplie&nbsp;:
e18888f4 151 <select onchange="this.form.comm.value=this.value">
9fce7016 152 <option value="">&nbsp;</option>
e18888f4 153 {foreach from=$valid->answers() item=automatic_answer}
154 <option value="{$automatic_answer.answer}">{$automatic_answer.title}</option>
155 {/foreach}
156 </select>
fe30a442 157 <a href="admin/validate/answers">{icon name="page_edit" title="Éditer les réponses automatiques"}</a>
e18888f4 158 </div>
159 <div class='center'>
e8439508 160 Ajouté dans l'email&nbsp;:<br />
0337d704 161 <textarea rows="5" cols="50" name="comm"></textarea><br />
162
5daf68f6 163 <input type="hidden" name="uid" value="{$valid->user->id()}" />
0337d704 164 <input type="hidden" name="type" value="{$valid->type}" />
165 <input type="hidden" name="stamp" value="{$valid->stamp}" />
166 <input type="submit" name="accept" value="Accepter" />
167 {if $valid->refuse}<input type="submit" name="refuse" value="Refuser" />{/if}
168 <input type="submit" name="delete" value="Supprimer" />
169 </div>
170 </form>
171 </td>
172 </tr>
173</table>
cfb96867 174{else}
175{counter print=false assign=hidden}
176{/if}
0337d704 177{/iterate}
178
cfb96867 179{if $hidden}
a7de4ef7 180<p>{$hidden} validation{if $hidden > 1}s ont été masquées{else} a été masquée{/if}.</p>
cfb96867 181{/if}
182
0337d704 183{else}
184
a7de4ef7 185<p>Rien à valider</p>
0337d704 186
187{/if}
188
cfb96867 189<p>
e8439508 190 Afficher seulement les validation suivantes&nbsp;:
cfb96867 191</p>
0337d704 192
2069538b 193<form action="admin/validate" method="post">
194 {foreach from=$categories item=type}
5b8c317d 195 <div style="float:left;width:33%"><input type="checkbox" name="{$type}" id="hide_{$type}"{if !t($hide_requests[$type])} checked="checked"{/if}/>
2069538b 196 <label for="hide_{$type}">{$type}</label></div>
197 {/foreach}
198 <div class="center" style="clear:left"><input type="submit" name="hide" value="Valider" /></div>
199</form>
200
a7de4ef7 201{* vim:set et sw=2 sts=2 sws=2 enc=utf-8: *}