2016-04-22 18:49:52 +02:00
|
|
|
<div class="well panel-group">
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-xs-10 col-md-10">
|
|
|
|
<form class="form">
|
|
|
|
<div class="form-group">
|
|
|
|
<label for="">Operation:</label>
|
|
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
|
|
<input type="checkbox" ng-model="vm.opAll" ng-checked="vm.opCreate && vm.opPull && vm.opPush && vm.opDelete && vm.opOthers" ng-click="vm.checkOperation({checked: 'all'})"> All
|
|
|
|
<input type="checkbox" ng-checked="vm.opCreate" ng-model="vm.opCreate" ng-click="vm.checkOperation({checked: 'create'})"> Create
|
|
|
|
<input type="checkbox" ng-checked="vm.opPull" ng-model="vm.opPull" ng-click="vm.checkOperation({checked: 'pull'})"> Pull
|
|
|
|
<input type="checkbox" ng-checked="vm.opPush" ng-model="vm.opPush" ng-click="vm.checkOperation({checked: 'push'})"> Push
|
|
|
|
<input type="checkbox" ng-checked="vm.opDelete" ng-model="vm.opDelete" ng-click="vm.checkOperation({checked: 'delete'})"> Delete
|
|
|
|
<input type="checkbox" ng-checked="vm.opOthers" ng-model="vm.opOthers" ng-click="vm.checkOperation({checked: 'others'})"> Others
|
|
|
|
<input type="text" ng-model="vm.others" size="10">
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="form-group">
|
|
|
|
<label for="">Duration:</label>
|
|
|
|
</div>
|
2016-04-28 19:36:39 +02:00
|
|
|
|
|
|
|
<div class="form-group inline-block col-md-5">
|
|
|
|
<span class="datetime-picker-title">From:</span>
|
|
|
|
<!--date-picker picked-date="vm.fromDate"></date-picker-->
|
|
|
|
<div class="input-group datetimepicker">
|
|
|
|
<input id="fromDatePicker" class="form-control" type="text" readonly="readonly" ng-model="vm.fromDate" ng-change="vm.pickUp({key:'fromDate', value: vm.fromDate})">
|
|
|
|
<span class="input-group-addon">
|
|
|
|
<span class="glyphicon glyphicon-calendar"></span>
|
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="form-group inline-block col-md-5">
|
|
|
|
<span class="datetime-picker-title">To:</span>
|
|
|
|
<div class="input-group datetimepicker">
|
|
|
|
<input id="toDatePicker" class="form-control" type="text" readonly="readonly" ng-model="vm.toDate" ng-change="vm.pickUp({key:'toDate', value: vm.toDate})">
|
|
|
|
<span class="input-group-addon">
|
|
|
|
<span class="glyphicon glyphicon-calendar"></span>
|
|
|
|
</span>
|
|
|
|
</div>
|
2016-04-22 18:49:52 +02:00
|
|
|
</div>
|
2016-04-28 19:36:39 +02:00
|
|
|
|
2016-04-22 18:49:52 +02:00
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
<div class="col-xs-2 col-md-2">
|
|
|
|
<form>
|
|
|
|
<div class="form-group" style="margin-top: 40%;">
|
2016-04-27 12:29:55 +02:00
|
|
|
<button type="button" class="btn btn-primary" ng-click="vm.search({op: vm.op})">Search</button>
|
2016-04-22 18:49:52 +02:00
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|