81825635b73c993edfc13fa66a1187320a708b46
[platal.git] / templates / survey / edit.questions.tpl
1 {**************************************************************************}
2 {*                                                                        *}
3 {*  Copyright (C) 2003-2011 Polytechnique.org                             *}
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           *}
18 {*  Foundation, Inc.,                                                     *}
19 {*  59 Temple Place, Suite 330, Boston, MA  02111-1307  USA               *}
20 {*                                                                        *}
21 {**************************************************************************}
22
23 {literal}
24 <script id="q_edit_new" type="text/x-jquery-tmpl">
25   <div style="clear: both" class="q_edit" id="q_edit[${qid}]">
26     <div>
27       <span class="q_edit_label" style="font-weight: bold">Question ${qid + 1}</span> 
28       (<a onclick="$(this).removeQuestion()" style="text-decoration: none">
29         {/literal}{icon name="delete"}{literal} Supprimer
30       </a>)
31     </div>
32     Type de question&nbsp;: <select name="q_edit[${qid}][type]">
33       <option value=""></option>
34       <option value="text" {{if type}}{{if type == 'text'}}selected="selected"{{/if}}{{/if}}>Texte</option>
35       <option value="section" {{if type}}{{if type == 'section'}}selected="selected"{{/if}}{{/if}}>Section</option>
36     </select>
37     <div class="q_edit_form">
38       {{tmpl "#q_edit_base"}}
39     </div>
40   </div>
41 </script>
42
43 <script id="q_edit_base" type="text/x-jquery-tmpl">
44   {{if type}}
45     {{tmpl "#q_edit_" + type}}
46   {{/if}}
47 </script>
48
49 <script id="q_edit_text" type="text/x-jquery-tmpl">
50   Question&nbsp;: <input type="text" name="q_edit[${qid}][label]" /><br />
51 </script>
52
53 <script id="q_edit_section" type="text/x-jquery-tmpl">
54   <div id="section_${qid}" style="padding-left: 4ex; border-left: 1px solid white">
55     <div class="add_question">
56       <a onclick="$(this).addQuestion()" style="text-decoration: none">
57         {/literal}{icon name="add"}{literal} Ajouter une question
58       </a>
59     </div>
60   <div>
61 </script>
62 {/literal}
63
64 {* vim:set et sw=2 sts=2 ts=8 enc=utf-8: *}