Sha256: 01761cc3b0c1d8298cb7f90406cdf985ff8a75b2c6e30ffe89ae58f95d266fef
Contents?: true
Size: 1.49 KB
Versions: 47
Compression:
Stored size: 1.49 KB
Contents
<script type="text/ng-template" id="promethee/components/collection/edit/inspect"> <div class="form-group"> <label class="label-control">Items per line (on desktop):</label> <div class="row"> <div class="col-xs-2 col-2"> <input ng-model="promethee.inspected.attributes.items_per_line" type="radio" ng-value="2"> 2 </div> <div class="col-xs-2 col-2"> <input ng-model="promethee.inspected.attributes.items_per_line" type="radio" ng-value="3"> 3 </div> <div class="col-xs-2 col-2"> <input ng-model="promethee.inspected.attributes.items_per_line" type="radio" ng-value="4"> 4 </div> <div class="col-xs-2 col-2"> <input ng-model="promethee.inspected.attributes.items_per_line" type="radio" ng-value="6"> 6 </div> </div> </div> <hr> <div class="form-group"> <div class="btn btn-default btn-light" ng-click="addComponentByType('collection_item', promethee.inspected.children)">Add item</div> <div ng-show="promethee.inspected.children.length"> <br><br> <label class="label-control">Drag the items below to reorder them:</label> <ul ui-sortable ng-model="promethee.inspected.children" class="list-unstyled"> <li ng-repeat="item in promethee.inspected.children"> <div> <%= icon('fa', 'bars') %> Item {{$index + 1}} <span class="label label-info" ng-click="promethee.inspected = item">Edit</span> </div> </li> </ul> </div> </div> </script>
Version data entries
47 entries across 47 versions & 1 rubygems