0.0.6 | Built motion from commit ffa9431.
[motion.git] / public / assets / plugins / angular-elastic-builder / src / tmpl / types / Multi.html
1 <!-- <span class="multi-rule">
2   <span data-ng-repeat="choice in guide.choices">
3     <label class="checkbox">
4       <input type="checkbox" data-ng-model="rule.values[choice]">
5       {{ choice }}
6     </label>
7   </span>
8 </span> -->
9
10 <span class="multi-rule">
11   {{guide.action.midterm | translate}}
12   <!-- Range Fields -->
13   <!-- <select data-ng-model="rule.values" class="form-control"> -->
14   <select data-ng-model="rule.value" class="form-control">
15     <!-- <optgroup label="Numeral"> -->
16       <option data-ng-repeat="(key, value) in guide.choices" value="{{value}}">{{key}}</option>
17     <!-- </optgroup> -->
18
19     <!-- <optgroup label="Generic">
20       <option value="exists">Exists</option>
21       <option value="notExists">! Exists</option>
22     </optgroup> -->
23   </select>
24
25   <!-- <input data-ng-if="inputNeeded()"
26     class="form-control"
27     data-ng-model="rule.value"
28     type="number"
29     min="{{ guide.minimum }}"
30     max="{{ guide.maximum }}"> -->
31 </span>