modify to range voting
[cavote.git] / templates / admin_vote_edit.html
index 42eef08..1b0c3eb 100644 (file)
                   <input type="text" data-provide="typeahead" data-source='["ca","membres"]' size=30 name="category" id="category" value="{{ vote.category }}" />
                 </div>
               </div>
+              <div class="control-group">
+                <label class="control-label" for="category">Quorum</label>
+                <div class="controls">
+                  <select name="quorum" id="quorum">
+                    {% for quorum in quorums %}
+                    {% if quorum == vote.quorum %}
+                    <option value="{{ quorum }}" selected>{{ quorum * 100 }}%</option>
+                    {% else %}
+                    <option value="{{ quorum }}">{{ quorum * 100 }}%</option>
+                    {% endif %}
+                    {% endfor %}
+                  </select>
+                </div>
+              </div>
               <div class="control-group">
                 <label class="control-label" for="role">Groupe</label>
                 <div class="controls">
                   </label>
                 {% if not vote.is_terminated == 1 %}
                   <label class="checkbox">
-                    <input type="checkbox" name="multiplechoice" {% if vote.is_multiplechoice == 1 %} checked {% endif %} disabled/>
-                    Les votants peuvent-ils choisir plusieurs options ?
+                    <input type="checkbox" name="anonymous" {% if vote.is_anonymous == 1 %} checked {% endif %} disabled/>
+                    Les votes sont-ils anonymes ?
                   </label>
                 {% endif %}
                 </div>
               </div>
+              <div class="control-group">
+                <label class="control-label" for="value">Valeurs</label>
+                <div class="controls">
+                  <select name="value" id="value" disabled>
+                      <option>{{ values_ }}</option>
+                  </select>
+                </div>
+              </div>
             </div>
           </div>
         </div>