be29c27a601b4ff4b62def3dcce6e3c72ccd25e2
[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   <fieldset style="clear: both; padding-top: 1em; background: inherit; color: inherit"
26             class="q_edit" id="q_edit[${qid}]">
27     <legend>
28       <span class="q_edit_label" style="font-weight: bold">Question ${qid + 1}</span> 
29       <input type="text" name="q_edit[${qid}][label]" value="{{if label}}${label}{{/if}}" />
30       (<a onclick="$(this).removeQuestion()" style="text-decoration: none">
31         {/literal}{icon name="delete"}{literal} Supprimer
32       </a>)<br />
33       Type de question&nbsp;: <select name="q_edit[${qid}][type]">
34         <option value=""></option>
35         <option value="section" {{if type}}{{if type == 'section'}}selected="selected"{{/if}}{{/if}}>
36           Section
37         </option>
38         <option value="text" {{if type}}{{if type == 'text'}}selected="selected"{{/if}}{{/if}}>
39           Texte
40         </option>
41         <option value="multiple" {{if type}}{{if type == 'multiple'}}selected="selected"{{/if}}{{/if}}>
42           Question à choix multiples
43         </option>
44       </select>
45     </legend>
46     <div class="q_edit_form">
47       {{tmpl "#q_edit_base"}}
48     </div>
49   </fieldset>
50 </script>
51
52 <script id="q_edit_base" type="text/x-jquery-tmpl">
53   {{if type}}
54     {{tmpl "#q_edit_" + type}}
55   {{/if}}
56 </script>
57
58 <script id="q_edit_text" type="text/x-jquery-tmpl">
59 </script>
60
61 <script id="q_edit_section" type="text/x-jquery-tmpl">
62   <div id="q_edit[${qid}][section]">
63     <div class="add_question">
64       <a onclick="$(this).addQuestion()" style="text-decoration: none">
65         {/literal}{icon name="add"}{literal} Ajouter une question
66       </a>
67     </div>
68   </div>
69 </script>
70
71 <script id="q_edit_multiple" type="text/x-jquery-tmpl">
72   <div id="q_edit[${qid}][answers]">
73     <div>
74       Permettre la sélection de plusieurs réponses ?
75       <select name="q_edit[${qid}][subtype]">
76         <option value="checkbox">Oui</option>
77         <option value="radio" selected="selected">Non</option>
78       </select>
79     </div>
80     <div class="add_answer">
81       <a onclick="$(this).multiple_addAnswer()">
82         {/literal}{icon name="add"}{literal} Ajouter une réponse
83       </a>
84     </div>
85     <div>
86       Ajouter une case Autre ?
87       <select name="q_edit[${qid}][allow_other]">
88         <option value="1">Oui</option>
89         <option value="" selected="selected">Non</option>
90       </select>
91     </div>
92   </div>
93 </script>
94
95 <script id="q_edit_multiple_answer" type="text/x-jquery-tmpl">
96   <div>
97     <span class="q_edit_answer_box"></span>
98     <input type="text" name="q_edit[${qid}][answers][]" value="${value}" />
99     <a onclick="$(this).multiple_removeAnswer()">{/literal}{icon name="delete"}{literal}</a>
100   </div>
101 </script>
102
103 {/literal}
104
105 {* vim:set et sw=2 sts=2 ts=8 enc=utf-8: *}