2016-06-08 06:23:11 +00:00
|
|
|
<rd-header>
|
2016-06-14 02:32:44 +00:00
|
|
|
<rd-header-title title="Network list">
|
|
|
|
<a data-toggle="tooltip" title="Refresh" ui-sref="networks" ui-sref-opts="{reload: true}">
|
|
|
|
<i class="fa fa-refresh" aria-hidden="true"></i>
|
|
|
|
</a>
|
2017-01-24 01:28:40 +00:00
|
|
|
<i id="loadNetworksSpinner" class="fa fa-cog fa-spin" style="margin-left: 5px;"></i>
|
2016-06-14 02:32:44 +00:00
|
|
|
</rd-header-title>
|
2016-06-08 06:23:11 +00:00
|
|
|
<rd-header-content>Networks</rd-header-content>
|
|
|
|
</rd-header>
|
|
|
|
|
2016-09-14 04:28:38 +00:00
|
|
|
<div class="row">
|
|
|
|
<div class="col-lg-12 col-md-12 col-xs-12">
|
|
|
|
<rd-widget>
|
|
|
|
<rd-widget-header icon="fa-sitemap" title="Networks">
|
|
|
|
<div class="pull-right">
|
2017-01-24 01:28:40 +00:00
|
|
|
Items per page:
|
|
|
|
<select ng-model="state.pagination_count" ng-change="changePaginationCount()">
|
|
|
|
<option value="0">All</option>
|
|
|
|
<option value="10">10</option>
|
|
|
|
<option value="25">25</option>
|
|
|
|
<option value="50">50</option>
|
|
|
|
<option value="100">100</option>
|
|
|
|
</select>
|
2016-09-14 04:28:38 +00:00
|
|
|
</div>
|
|
|
|
</rd-widget-header>
|
|
|
|
<rd-widget-taskbar classes="col-lg-12">
|
|
|
|
<div class="pull-left">
|
2016-10-27 08:33:39 +00:00
|
|
|
<button type="button" class="btn btn-danger" ng-click="removeAction()" ng-disabled="!state.selectedItemCount"><i class="fa fa-trash space-right" aria-hidden="true"></i>Remove</button>
|
2017-09-19 14:58:30 +00:00
|
|
|
<a class="btn btn-primary" type="button" ui-sref="actions.create.network"><i class="fa fa-plus space-right" aria-hidden="true"></i>Add network</a>
|
2016-09-14 04:28:38 +00:00
|
|
|
</div>
|
|
|
|
<div class="pull-right">
|
|
|
|
<input type="text" id="filter" ng-model="state.filter" placeholder="Filter..." class="form-control input-sm" />
|
|
|
|
</div>
|
|
|
|
</rd-widget-taskbar>
|
|
|
|
<rd-widget-body classes="no-padding">
|
|
|
|
<div class="table-responsive">
|
|
|
|
<table class="table table-hover">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
2017-01-04 20:15:41 +00:00
|
|
|
<th>
|
|
|
|
<input type="checkbox" ng-model="allSelected" ng-change="selectItems(allSelected)" />
|
|
|
|
</th>
|
2016-09-14 04:28:38 +00:00
|
|
|
<th>
|
2017-09-19 14:58:30 +00:00
|
|
|
<a ng-click="order('Name')">
|
2016-09-14 04:28:38 +00:00
|
|
|
Name
|
|
|
|
<span ng-show="sortType == 'Name' && !sortReverse" class="glyphicon glyphicon-chevron-down"></span>
|
|
|
|
<span ng-show="sortType == 'Name' && sortReverse" class="glyphicon glyphicon-chevron-up"></span>
|
|
|
|
</a>
|
|
|
|
</th>
|
|
|
|
<th>
|
2017-09-19 14:58:30 +00:00
|
|
|
<a ng-click="order('Id')">
|
2016-09-14 04:28:38 +00:00
|
|
|
Id
|
|
|
|
<span ng-show="sortType == 'Id' && !sortReverse" class="glyphicon glyphicon-chevron-down"></span>
|
|
|
|
<span ng-show="sortType == 'Id' && sortReverse" class="glyphicon glyphicon-chevron-up"></span>
|
|
|
|
</a>
|
|
|
|
</th>
|
|
|
|
<th>
|
2017-09-19 14:58:30 +00:00
|
|
|
<a ng-click="order('Scope')">
|
2016-09-14 04:28:38 +00:00
|
|
|
Scope
|
|
|
|
<span ng-show="sortType == 'Scope' && !sortReverse" class="glyphicon glyphicon-chevron-down"></span>
|
|
|
|
<span ng-show="sortType == 'Scope' && sortReverse" class="glyphicon glyphicon-chevron-up"></span>
|
|
|
|
</a>
|
|
|
|
</th>
|
|
|
|
<th>
|
2017-09-19 14:58:30 +00:00
|
|
|
<a ng-click="order('Driver')">
|
2016-09-14 04:28:38 +00:00
|
|
|
Driver
|
|
|
|
<span ng-show="sortType == 'Driver' && !sortReverse" class="glyphicon glyphicon-chevron-down"></span>
|
|
|
|
<span ng-show="sortType == 'Driver' && sortReverse" class="glyphicon glyphicon-chevron-up"></span>
|
|
|
|
</a>
|
|
|
|
</th>
|
|
|
|
<th>
|
2017-09-19 14:58:30 +00:00
|
|
|
<a ng-click="order('IPAM.Driver')">
|
2016-09-14 04:28:38 +00:00
|
|
|
IPAM Driver
|
|
|
|
<span ng-show="sortType == 'IPAM.Driver' && !sortReverse" class="glyphicon glyphicon-chevron-down"></span>
|
|
|
|
<span ng-show="sortType == 'IPAM.Driver' && sortReverse" class="glyphicon glyphicon-chevron-up"></span>
|
|
|
|
</a>
|
|
|
|
</th>
|
|
|
|
<th>
|
2017-09-19 14:58:30 +00:00
|
|
|
<a ng-click="order('IPAM.Config[0].Subnet')">
|
2016-09-14 04:28:38 +00:00
|
|
|
IPAM Subnet
|
|
|
|
<span ng-show="sortType == 'IPAM.Config[0].Subnet' && !sortReverse" class="glyphicon glyphicon-chevron-down"></span>
|
|
|
|
<span ng-show="sortType == 'IPAM.Config[0].Subnet' && sortReverse" class="glyphicon glyphicon-chevron-up"></span>
|
|
|
|
</a>
|
|
|
|
</th>
|
|
|
|
<th>
|
2017-09-19 14:58:30 +00:00
|
|
|
<a ng-click="order('IPAM.Config[0].Gateway')">
|
2016-09-14 04:28:38 +00:00
|
|
|
IPAM Gateway
|
|
|
|
<span ng-show="sortType == 'IPAM.Config[0].Gateway' && !sortReverse" class="glyphicon glyphicon-chevron-down"></span>
|
|
|
|
<span ng-show="sortType == 'IPAM.Config[0].Gateway' && sortReverse" class="glyphicon glyphicon-chevron-up"></span>
|
|
|
|
</a>
|
|
|
|
</th>
|
2017-09-19 14:58:30 +00:00
|
|
|
<th ng-if="applicationState.application.authentication">
|
|
|
|
<a ng-click="order('ResourceControl.Ownership')">
|
|
|
|
Ownership
|
|
|
|
<span ng-show="sortType == 'ResourceControl.Ownership' && !sortReverse" class="glyphicon glyphicon-chevron-down"></span>
|
|
|
|
<span ng-show="sortType == 'ResourceControl.Ownership' && sortReverse" class="glyphicon glyphicon-chevron-up"></span>
|
|
|
|
</a>
|
|
|
|
</th>
|
2016-09-14 04:28:38 +00:00
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
2017-01-24 01:28:40 +00:00
|
|
|
<tr dir-paginate="network in ( state.filteredNetworks = (networks | filter:state.filter | orderBy:sortType:sortReverse | itemsPerPage: state.pagination_count))">
|
2016-09-14 04:28:38 +00:00
|
|
|
<td><input type="checkbox" ng-model="network.Checked" ng-change="selectItem(network)"/></td>
|
|
|
|
<td><a ui-sref="network({id: network.Id})">{{ network.Name|truncate:40}}</a></td>
|
2017-07-11 07:56:28 +00:00
|
|
|
<td class="monospaced">{{ network.Id|truncate:20 }}</td>
|
2016-09-14 04:28:38 +00:00
|
|
|
<td>{{ network.Scope }}</td>
|
|
|
|
<td>{{ network.Driver }}</td>
|
|
|
|
<td>{{ network.IPAM.Driver }}</td>
|
|
|
|
<td>{{ network.IPAM.Config[0].Subnet ? network.IPAM.Config[0].Subnet : '-' }}</td>
|
|
|
|
<td>{{ network.IPAM.Config[0].Gateway ? network.IPAM.Config[0].Gateway : '-' }}</td>
|
2017-09-19 14:58:30 +00:00
|
|
|
<td ng-if="applicationState.application.authentication">
|
|
|
|
<span>
|
|
|
|
<i ng-class="network.ResourceControl.Ownership | ownershipicon" aria-hidden="true"></i>
|
|
|
|
{{ network.ResourceControl.Ownership ? network.ResourceControl.Ownership : network.ResourceControl.Ownership = 'public' }}
|
|
|
|
</span>
|
|
|
|
</td>
|
2016-09-14 04:28:38 +00:00
|
|
|
</tr>
|
2016-10-08 01:59:58 +00:00
|
|
|
<tr ng-if="!networks">
|
2017-09-19 14:58:30 +00:00
|
|
|
<td colspan="9" class="text-center text-muted">Loading...</td>
|
2016-10-08 01:59:58 +00:00
|
|
|
</tr>
|
2016-10-07 04:55:09 +00:00
|
|
|
<tr ng-if="networks.length == 0">
|
2017-09-19 14:58:30 +00:00
|
|
|
<td colspan="9" class="text-center text-muted">No networks available.</td>
|
2016-10-07 04:55:09 +00:00
|
|
|
</tr>
|
2016-09-14 04:28:38 +00:00
|
|
|
</tbody>
|
|
|
|
</table>
|
2016-11-17 12:50:46 +00:00
|
|
|
<div ng-if="networks" class="pull-left pagination-controls">
|
|
|
|
<dir-pagination-controls></dir-pagination-controls>
|
|
|
|
</div>
|
2016-09-14 04:28:38 +00:00
|
|
|
</div>
|
|
|
|
</rd-widget-body>
|
2017-07-08 08:23:00 +00:00
|
|
|
</rd-widget>
|
2016-09-14 04:28:38 +00:00
|
|
|
</div>
|
2015-12-18 05:35:04 +00:00
|
|
|
</div>
|