blob: adf9e3c3ca3ef3dbcaa467347049475440363219 [file] [log] [blame]
lishuai5556fde2016-03-22 16:06:23 +08001<!--
Brian O'Connora09fe5b2017-08-03 21:12:30 -07002 ~ Copyright 2016-present Open Networking Foundation
lishuai5556fde2016-03-22 16:06:23 +08003 ~
4 ~ Licensed under the Apache License, Version 2.0 (the "License");
5 ~ you may not use this file except in compliance with the License.
6 ~ You may obtain a copy of the License at
7 ~
8 ~ http://www.apache.org/licenses/LICENSE-2.0
9 ~
10 ~ Unless required by applicable law or agreed to in writing, software
11 ~ distributed under the License is distributed on an "AS IS" BASIS,
12 ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 ~ See the License for the specific language governing permissions and
14 ~ limitations under the License.
15 -->
16
17<!-- SFC partial HTML -->
18<div id="ov-sfc">
19 <div class="tabular-header">
20 <h2>service function chains ({{tableData.length}} total)</h2>
21 <div class="ctrl-btns">
22 <div class="refresh" ng-class="{active: autoRefresh}"
23 icon icon-size="36" icon-id="refresh"
24 tooltip tt-msg="autoRefreshTip"
25 ng-click="toggleRefresh()"></div>
26 </div>
27 </div>
28
29 <div class="summary-list" onos-table-resize>
30 <div class="table-header" onos-sortable-header>
31 <table>
32 <tr>
33 <td colId="_iconid_state" class="table-icon" sortable></td>
34 <td colId="portChainName" sortable>PortChainName </td>
Phaneendra Mandab212bc92016-07-08 16:50:11 +053035 <td colId="sfs" sortable>Sfs </td>
lishuai5556fde2016-03-22 16:06:23 +080036 <td colId="type" sortable>Type </td>
37 <td colId="srcIp" sortable>Source IP Prefix </td>
38 <td colId="dstIp" sortable>Destination IP Prefix </td>
39 </tr>
40 </table>
41 </div>
42
43 <div class="table-body">
44 <table onos-flash-changes id-prop="one">
45 <tr ng-if="!tableData.length" class="no-data">
46 <td colspan="6">
47 No Service Function Chain found
48 </td>
49 </tr>
50
51 <tr ng-repeat="sfc in tableData track by $index"
52 ng-repeat-complete row-id="{{sfc.id}}">
53 <td class="table-icon">
54 <div icon icon-id="{{sfc._iconid_state}}"></div>
55 </td>
56 <td>{{sfc.portChainName}}</td>
Phaneendra Mandab212bc92016-07-08 16:50:11 +053057 <td>{{sfc.sfs}}</td>
lishuai5556fde2016-03-22 16:06:23 +080058 <td>{{sfc.type}}</td>
59 <td>{{sfc.srcIp}}</td>
60 <td>{{sfc.dstIp}}</td>
61 </tr>
62 </table>
63 </div>
64
65 </div>
66
67</div>