Save answers.
[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           Champ libre
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   Type de texte&nbsp;:
60   <select name="q_edit[${qid}][subtype]">
61     <option value="monoline" {{if subtype}}{{if subtype == 'monoline'}}selected="selected"{{/if}}{{/if}}>
62       Une seule ligne
63     </option>
64     <option value="multiline" {{if subtype}}{{if subtype == 'multiline'}}selected="selected"{{/if}}{{/if}}>
65       Plusieurs lignes
66     </option>
67   </select>
68 </script>
69
70 <script id="q_edit_section" type="text/x-jquery-tmpl">
71   <div id="q_edit[${qid}][section]">
72     <div class="add_question">
73       <a onclick="$(this).addQuestion()" style="text-decoration: none">
74         {/literal}{icon name="add"}{literal} Ajouter une question
75       </a>
76     </div>
77   </div>
78 </script>
79
80 <script id="q_edit_multiple" type="text/x-jquery-tmpl">
81   <div id="q_edit[${qid}][answers]">
82     <div>
83       Permettre la sélection de plusieurs réponses ?
84       <select name="q_edit[${qid}][subtype]">
85         <option value="checkbox" {{if subtype}}{{if subtype == 'checkbox'}}selected="selected"{{/if}}{{/if}}>
86           Oui
87         </option>
88         <option value="radio" {{if subtype}}{{if subtype == 'radio'}}selected="selected"{{/if}}{{/if}}>
89           Non
90         </option>
91       </select>
92     </div>
93     <div class="add_answer">
94       <a onclick="$(this).multiple_addAnswer()">
95         {/literal}{icon name="add"}{literal} Ajouter une réponse
96       </a>
97     </div>
98     <div>
99       Ajouter une case Autre ?
100       <select name="q_edit[${qid}][allow_other]">
101         <option value="1" {{if allow_other}}selected="selected"{{/if}}>Oui</option>
102         <option value="" {{if !allow_other}}selected="selected"{{/if}}>Non</option>
103       </select>
104     </div>
105   </div>
106 </script>
107
108 <script id="q_edit_multiple_answer" type="text/x-jquery-tmpl">
109   <div>
110     <span class="q_edit_answer_box"></span>
111     <input type="text" name="q_edit[${qid}][answers][]" value="${value}" />
112     <a onclick="$(this).multiple_removeAnswer()">{/literal}{icon name="delete"}{literal}</a>
113   </div>
114 </script>
115
116 {/literal}
117
118 {* vim:set et sw=2 sts=2 ts=8 enc=utf-8: *}