Matteo Scandolo | d2044a4 | 2017-08-07 16:08:28 -0700 | [diff] [blame] | 1 | |
| 2 | <!-- |
| 3 | Copyright 2017-present Open Networking Foundation |
| 4 | |
| 5 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | you may not use this file except in compliance with the License. |
| 7 | You may obtain a copy of the License at |
| 8 | |
| 9 | http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | |
| 11 | Unless required by applicable law or agreed to in writing, software |
| 12 | distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | See the License for the specific language governing permissions and |
| 15 | limitations under the License. |
| 16 | --> |
| 17 | |
| 18 | |
Jeremy Mowery | c257c41 | 2016-03-01 19:15:40 -0700 | [diff] [blame] | 19 | <div style="display: table;"> |
Jeremy Mowery | ee13991 | 2016-04-17 19:20:01 -0700 | [diff] [blame] | 20 | <div class="vpn-row"> |
| 21 | <h1 class="vpn-cell">VPN List</h1> |
Jeremy Mowery | c257c41 | 2016-03-01 19:15:40 -0700 | [diff] [blame] | 22 | </div> |
Jeremy Mowery | ee13991 | 2016-04-17 19:20:01 -0700 | [diff] [blame] | 23 | <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 Mowery | c257c41 | 2016-03-01 19:15:40 -0700 | [diff] [blame] | 28 | </div> |
Jeremy Mowery | ee13991 | 2016-04-17 19:20:01 -0700 | [diff] [blame] | 29 | <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 Mowery | 37e4efe | 2016-03-02 00:01:25 -0700 | [diff] [blame] | 34 | <a download="connect-{{ vpn.id }}.vpn" ng-href="{{ vpn.script_text }}">Script</a> |
Jeremy Mowery | c257c41 | 2016-03-01 19:15:40 -0700 | [diff] [blame] | 35 | </div> |
Jeremy Mowery | 889689b | 2016-02-25 14:26:12 -0700 | [diff] [blame] | 36 | </div> |
Jeremy Mowery | 35a2219 | 2016-02-25 11:26:07 -0700 | [diff] [blame] | 37 | </div> |