2016-06-07 10:49:38 +02:00
< div class = "tab-pane" >
< div class = "col-xs-12 col-md-12 each-tab-pane" >
< div class = "form-inline" >
< div class = "input-group" >
2016-06-13 12:12:46 +02:00
< input type = "text" class = "form-control" placeholder = "" ng-model = "vm.replicationPolicyName" size = "30" >
2016-06-07 10:49:38 +02:00
< span class = "input-group-btn" >
2016-06-16 11:36:06 +02:00
< button class = "btn btn-primary" type = "button" ng-click = "vm.searchReplicationPolicy()" > < span class = "glyphicon glyphicon-search" > < / span > < / button >
2016-06-07 10:49:38 +02:00
< / span >
< / div >
2016-06-22 05:26:28 +02:00
< button ng-if = "!vm.isOpen" class = "btn btn-success" type = "button" ng-click = "vm.addReplication()" data-toggle = "modal" data-target = "#createPolicyModal" > < span class = "glyphicon glyphicon-plus" > < / span > // 'add_new_policy' | tr //< / button >
2016-06-13 12:12:46 +02:00
< create-policy reload = "vm.retrievePolicy()" action = "vm.action" modal-title = "//vm.modalTitle//" policy-id = "//vm.policyId//" > < / create-policy >
2016-06-07 10:49:38 +02:00
< / div >
< div class = "pane-split" id = "upon-pane" >
< div class = "sub-pane-split" >
2016-06-28 05:15:34 +02:00
< div class = "table-head-container" >
2016-06-28 01:58:38 +02:00
< table class = "table table-pane table-header" >
2016-06-07 10:49:38 +02:00
< thead >
2016-06-20 13:15:45 +02:00
< th width = "10%" > // 'name' | tr //< / th >
< th width = "18%" > // 'description' | tr //< / th >
< th width = "18%" > // 'destination' | tr //< / th >
2016-06-28 17:42:05 +02:00
< th width = "18%" > // 'last_start_time' | tr //< / th >
2016-06-20 13:15:45 +02:00
< th width = "14%" > // 'activation' | tr// < / th >
< th width = "15%" > // 'actions' | tr //< / th >
2016-06-07 10:49:38 +02:00
< / thead >
2016-06-28 01:58:38 +02:00
< / table >
2016-06-28 05:15:34 +02:00
< / div >
2016-06-28 07:12:25 +02:00
< div class = "table-body-container" style = "height: 250px;" >
2016-06-28 01:58:38 +02:00
< table class = "table table-pane" >
< tbody >
< tr ng-if = "vm.replicationPolicies.length == 0" >
2016-06-29 08:19:20 +02:00
< td colspan = "7" height = "100%" class = "empty-hint" > < h3 class = "text-muted" > // 'no_replication_policies_add_new' | tr //< / h3 > < / td >
2016-06-28 01:58:38 +02:00
< / tr >
< tr policy_id = "//r.id//" ng-if = "vm.replicationPolicies.length > 0" ng-repeat = "r in vm.replicationPolicies" value = "//vm.last = $last//" >
< td width = "10%" > //r.name//< / td >
2016-06-29 11:14:00 +02:00
< td width = "18%" style = "padding-left: 10px;" > //r.description//< / td >
< td width = "18%" style = "padding-left: 15px;" > //r.target_name//< / td >
< td width = "18%" style = "padding-left: 18px;" > //r.start_time | dateL : 'YYYY-MM-DD HH:mm:ss'//< / td >
< td width = "14%" style = "padding-left: 18px;" ng-switch on = "//r.enabled//" >
2016-06-28 01:58:38 +02:00
< span ng-switch-when = "1" > // 'enabled' | tr //< / span >
< span ng-switch-when = "0" > // 'disabled' | tr //< / span >
< / td >
2016-06-29 11:14:00 +02:00
< td width = "15%" style = "padding-left: 20px;" >
2016-06-28 01:58:38 +02:00
< div class = "display-inline-block" ng-switch on = "//r.enabled//" >
2016-06-28 17:42:05 +02:00
< a href = "javascript:void(0);" ng-click = "vm.togglePolicy(r.id, 0)" title = "// 'disabled' | tr //" > < span ng-switch-when = "1" class = "glyphicon glyphicon-stop color-danger" > < / span > < / a >
< a href = "javascript:void(0);" ng-click = "vm.togglePolicy(r.id, 1)" title = "// 'enabled' | tr //" > < span ng-switch-when = "0" class = "glyphicon glyphicon-play color-success" > < / span > < / a >
2016-06-28 01:58:38 +02:00
< / div >
2016-06-28 17:42:05 +02:00
< a href = "javascript:void(0);" data-toggle = "modal" data-target = "#createPolicyModal" ng-click = "vm.editReplication(r.id)" title = "// 'edit_policy' | tr //" > < span class = "glyphicon glyphicon-pencil" > < / span > < / a >
2016-06-28 01:58:38 +02:00
<!-- a href="javascript:void(0);"><span class="glyphicon glyphicon - trash"></span></a -->
< / td >
< / tr >
< / tbody >
< / table >
< / div >
2016-06-07 10:49:38 +02:00
< / div >
< / div >
2016-06-17 09:22:58 +02:00
< div class = "col-xs-4 col-md-12 well well-sm well-custom well-split" > < div class = "col-md-offset-10" > //vm.replicationPolicies ? vm.replicationPolicies.length : 0// // 'items' | tr //< / div > < / div >
2016-06-28 07:12:25 +02:00
<!-- p class="split - handle"><span class="glyphicon glyphicon - align - justify"></span></p -->
2016-06-20 13:15:45 +02:00
< h4 class = "h4-custom-down" > // 'replication_jobs' | tr //< / h4 >
2016-06-07 10:49:38 +02:00
< hr class = "hr-line" / >
< div class = "form-inline" >
< div class = "input-group" >
2016-06-17 09:22:58 +02:00
< input type = "text" class = "form-control" placeholder = "" ng-model = "vm.replicationJobName" size = "30" >
2016-06-07 10:49:38 +02:00
< span class = "input-group-btn" >
2016-06-28 17:42:05 +02:00
< button class = "btn btn-primary" type = "button" ng-click = "vm.searchReplicationJob()" ng-disabled = "vm.refreshPending" > < span class = "glyphicon glyphicon-search" > < / span > < / button >
2016-06-07 10:49:38 +02:00
< / span >
< / div >
2016-06-29 11:14:00 +02:00
< div class = "input-group" >
< label for = "selStatus" class = "control-label label-custom" > // 'status' | tr //:< / label >
< div class = "input-group" >
< select class = "form-control" id = "selStatus" ng-options = "st.value for st in vm.jobStatus() track by st.key" ng-model = "vm.currentStatus" ng-change = "vm.searchReplicationJob()" > < / select >
< / div >
< / div >
< div class = "input-group" >
< label for = "fromDatePicker" class = "control-label label-custom" > // 'from' | tr //:< / label >
< 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})" size = "10" >
< span class = "input-group-addon" >
< a href = "javascript:void(0);" > < span class = "glyphicon glyphicon-calendar" > < / span > < / a >
< / span >
< / div >
< / div >
< div class = "input-group" >
< label for = "toDatePicker" class = "control-label label-custom" > // 'to' | tr //:< / label >
< 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})" size = "10" >
< span class = "input-group-addon" >
< a href = "javascript:void(0);" > < span class = "glyphicon glyphicon-calendar" > < / span > < / a >
< / span >
< / div >
< / div >
2016-06-28 01:58:38 +02:00
< div class = "input-group" >
2016-06-28 17:42:05 +02:00
< button type = "button" class = "btn btn-success" ng-click = "vm.searchReplicationJob()" > < span class = "glyphicon glyphicon-refresh" > < / span > < / button >
2016-06-25 08:19:15 +02:00
< / div >
2016-06-07 10:49:38 +02:00
< / div >
< div class = "pane-split" id = "down-pane" >
< div class = "sub-pane-split" >
2016-06-28 05:15:34 +02:00
< div class = "table-head-container" >
2016-06-28 01:58:38 +02:00
< table class = "table table-pane table-header" >
2016-06-07 10:49:38 +02:00
< thead >
2016-06-28 17:42:05 +02:00
< th width = "15%" > // 'name' | tr //< / th >
< th width = "12%" > // 'operation' | tr //< / th >
< th width = "18%" > // 'creation_time' | tr //< / th >
< th width = "18%" > // 'start_time' | tr //< / th >
< th width = "18%" > // 'end_time' | tr //< / th >
< th width = "9%" > // 'status' | tr //< / th >
2016-06-28 01:58:38 +02:00
< th width = "10%" > // 'logs' | tr //< / th >
2016-06-07 10:49:38 +02:00
< / thead >
2016-06-28 01:58:38 +02:00
< / table >
2016-06-28 05:15:34 +02:00
< / div >
2016-06-28 07:12:25 +02:00
< div class = "table-body-container" style = "height: 370px;" >
2016-06-28 01:58:38 +02:00
< table class = "table table-pane" >
< tbody >
< tr ng-if = "vm.replicationJobs.length == 0" >
< td colspan = "4" height = "100%" class = "empty-hint" > < h3 class = "text-muted" > // 'no_replication_jobs' | tr //< / h3 > < / td >
< / tr >
< tr ng-if = "vm.replicationJobs.length > 0" ng-repeat = "r in vm.replicationJobs" >
2016-06-28 17:42:05 +02:00
< td width = "15%" > //r.repository//< / td >
< td width = "12%" > //r.operation//< / td >
2016-06-29 11:14:00 +02:00
< td width = "18%" style = "padding-left: 15px;" > //r.creation_time | dateL : 'YYYY-MM-DD HH:mm:ss'//< / td >
< td width = "18%" style = "padding-left: 15px;" > //r.creation_time | dateL : 'YYYY-MM-DD HH:mm:ss'//< / td >
< td width = "18%" style = "padding-left: 18px;" > //r.update_time | dateL : 'YYYY-MM-DD HH:mm:ss'//< / td >
< td width = "9%" style = "padding-left: 20px;" > //r.status//< / td >
< td width = "10%" align = "left" >
< a ng-show = "r.status != 'canceled' && r.status != 'pending'" href = "javascript:void(0);" ng-click = "vm.downloadLog(r.id)" title = "// 'download_log' | tr //" > < span style = "margin-left: 10px;" class = "glyphicon glyphicon-file" > < / span > < / a >
< / td >
2016-06-28 01:58:38 +02:00
< / tr >
< / tbody >
< / table >
< / div >
2016-06-07 10:49:38 +02:00
< / div >
< / div >
< / div >
< / div >
< / div >