blob: 8f722320340e4923efe5cdbfa11cbb0700c10624 [file] [log] [blame]
Matteo Scandolod2044a42017-08-07 16:08:28 -07001
2<!--
3Copyright 2017-present Open Networking Foundation
4
5Licensed under the Apache License, Version 2.0 (the "License");
6you may not use this file except in compliance with the License.
7You may obtain a copy of the License at
8
9http://www.apache.org/licenses/LICENSE-2.0
10
11Unless required by applicable law or agreed to in writing, software
12distributed under the License is distributed on an "AS IS" BASIS,
13WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14See the License for the specific language governing permissions and
15limitations under the License.
16-->
17
18
Jeremy Moweryc257c412016-03-01 19:15:40 -070019<div style="display: table;">
Jeremy Moweryee139912016-04-17 19:20:01 -070020 <div class="vpn-row">
21 <h1 class="vpn-cell">VPN List</h1>
Jeremy Moweryc257c412016-03-01 19:15:40 -070022 </div>
Jeremy Moweryee139912016-04-17 19:20:01 -070023 <div class="vpn-row">
24 <div class="vpn-cell vpn-header">ID</div>
25 <div class="vpn-cell vpn-header">VPN Network</div>
26 <div class="vpn-cell vpn-header">VPN Subnet</div>
27 <div class="vpn-cell vpn-header">Script Link</div>
Jeremy Moweryc257c412016-03-01 19:15:40 -070028 </div>
Jeremy Moweryee139912016-04-17 19:20:01 -070029 <div class="vpn-row" ng-repeat="vpn in vm.vpns">
30 <div class="vpn-cell">{{ vpn.id }}</div>
31 <div class="vpn-cell">{{ vpn.server_network }}</div>
32 <div class="vpn-cell">{{ vpn.vpn_subnet }}</div>
33 <div class="vpn-cell">
Jeremy Mowery37e4efe2016-03-02 00:01:25 -070034 <a download="connect-{{ vpn.id }}.vpn" ng-href="{{ vpn.script_text }}">Script</a>
Jeremy Moweryc257c412016-03-01 19:15:40 -070035 </div>
Jeremy Mowery889689b2016-02-25 14:26:12 -070036 </div>
Jeremy Mowery35a22192016-02-25 11:26:07 -070037</div>