| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- <div class="modal-body">
- <div class="pull-right editor-title">Row settings</div>
- <div ng-model="editor.index" bs-tabs>
- <div ng-repeat="tab in ['General','Panels']" data-title="{{tab}}">
- </div>
- </div>
- <div class="row-fluid" ng-show="editor.index == 0">
- <div class="span4">
- <label class="small">Title</label><input type="text" class="input-medium" ng-model='row.title'></input>
- </div>
- <div class="span2">
- <label class="small">Height</label><input type="text" class="input-mini" ng-model='row.height'></input>
- </div>
- <div class="span1">
- <label class="small"> Editable </label><input type="checkbox" ng-model="row.editable" ng-checked="row.editable" />
- </div>
- <div class="span1">
- <label class="small"> Collapsable </label><input type="checkbox" ng-model="row.collapsable" ng-checked="row.collapsable" />
- </div>
- </div>
- <div class="row-fluid" ng-show="editor.index == 1">
- <h4>New Panel</h4>
- <form class="input-append">
- <select class="input-medium input-append" ng-model="panel.type" ng-options="f for f in config.modules|stringSort"></select>
- <small ng-show="!panel.type">Select Type</small> <button ng-show="panel.type" ng-click="add_panel(row,panel); reset_panel();" class="btn btn-success ">Add <i class="icon-plus"></i></button></form>
- <div ng-show="!(_.isUndefined(panel.type))">
- <div ng-include src="'partials/panelgeneral.html'"></div>
- <div add-panel="{{panel.type}}"></div>
- </div>
- </div>
- <div class="row-fluid" ng-show="editor.index == 1">
- <div class="span12">
- <h4>Panels</h4>
- <table class="table table-condensed table-striped">
- <thead>
- <th>Title</th>
- <th>Type</th>
- <th>Span</th>
- <th>Delete</th>
- <th>Move</th>
- <th></th>
- <th>Hide</th>
- </thead>
- <tr ng-repeat="panel in row.panels">
- <td>{{panel.title}}</td>
- <td>{{panel.type}}</td>
- <td><select ng-hide="panel.sizeable == false" class="input-mini" ng-model="panel.span" ng-options="f for f in [0,1,2,3,4,5,6,7,8,9,10,11,12]"></select></td>
- <td><i ng-click="row.panels = _.without(row.panels,panel)" class="pointer icon-remove"></i></td>
- <td><i ng-click="_.move(row.panels,$index,$index-1)" ng-hide="$first" class="pointer icon-arrow-up"></i></td>
- <td><i ng-click="_.move(row.panels,$index,$index+1)" ng-hide="$last" class="pointer icon-arrow-down"></i></td>
- <td><input type="checkbox" ng-model="panel.hide" ng-checked="panel.hide"></td>
- </tr>
- </table>
- </div>
- </div>
- </div>
- <div class="modal-footer">
- <button type="button" class="btn btn-success" ng-click="dismiss();reset_panel();close_edit()">Close</button>
- </div>
|