| |
| <!-- |
| Copyright 2017-present Open Networking Foundation |
| |
| Licensed under the Apache License, Version 2.0 (the "License"); |
| you may not use this file except in compliance with the License. |
| You may obtain a copy of the License at |
| |
| http://www.apache.org/licenses/LICENSE-2.0 |
| |
| Unless required by applicable law or agreed to in writing, software |
| distributed under the License is distributed on an "AS IS" BASIS, |
| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| See the License for the specific language governing permissions and |
| limitations under the License. |
| --> |
| |
| |
| <div class="row-fluid"> |
| <div class="span6"> |
| <h1>{$ vm.cp.humanReadableName $}</h1> |
| </div> |
| <div class="span6 text-right"> |
| <cp-actions id="vm.cp.id"></cp-actions> |
| </div> |
| </div> |
| <hr> |
| <div class="row-fluid"> |
| <div class="span2"> |
| <div ng-include="'templates/cp_side_nav.html'"></div> |
| </div> |
| <div class="span10"> |
| <div ng-repeat="item in vm.cp.users" class="well"> |
| <div class="row-fluid"> |
| <div class="span3"> |
| {{item.firstname}} |
| </div> |
| <div class="span3"> |
| {{item.lastname}} |
| </div> |
| <div class="span4"> |
| {{item.email}} |
| </div> |
| <div class="span2"> |
| <a ng-click="vm.removeUserFromCp(item)" class="btn btn-danger pull-right"> |
| <i class="icon icon-remove"></i> |
| </a> |
| </div> |
| </div> |
| </div> |
| <hr> |
| <form ng-submit="vm.saveContentProvider(vm.cp)"> |
| <div class="row-fluid"> |
| <div class="span8"> |
| <label>Select user:</label> |
| <select ng-model="vm.user" ng-options="u as u.username for u in vm.users" ng-change="vm.addUserToCp(vm.user)"></select> |
| </div> |
| <div class="span4 text-right"> |
| <button class="btn btn-success margin-wells"> |
| Save |
| </button> |
| </div> |
| </div> |
| </form> |
| <div class="alert" ng-show="vm.result" ng-class="{'alert-success': vm.result.status === 1,'alert-error': vm.result.status === 0}"> |
| {$ vm.result.msg $} |
| </div> |
| </div> |
| </div> |