aboutsummaryrefslogtreecommitdiffstats
path: root/3rd_party/static/testapi-ui/components/directory/directory.html
blob: e274af8cc556711dc3b433771db3eeedc5d4981f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<!--
 Copyright (c) 2019 opnfv.

 All rights reserved. This program and the accompanying materials
 are made available under the terms of the Apache License, Version 2.0
 which accompanies this distribution, and is available at
 http://www.apache.org/licenses/LICENSE-2.0
-->

<div class="container-fluid common-main-container">
  <h3>OPNFV Verified Product Directory</h3>
  <div>
    <h4>Compliance Marks Granted to {{ctrl.companyID}}</h4>
    <img src="api/v1/cvp/applications/getlogo/{{ctrl.company_logo}}" alt="Company Logo">
    <table class="table table-striped table-hover">
      <thead>
        <tr>
          <th>Product</th>
          <th>Description</th>
          <th>OVP Cateogry</th>
          <th>OVP Version</th>
          <th>Product Info</th>
          <th>SUT Version</th>
          <th>SUT HW Version</th>
        </tr>
      </thead>
        <tbody class="directory_inner" style="overflow: hidden; text-overflow: ellipsis;">
          <tr style="vertical-align: center;" ng-repeat="prod in ctrl.directory"
              ng-if="prod.organization_name==ctrl.companyID && prod.approved=='true'">
            <td style="width: 250px;">{{ prod.product_name}}</td>
            <td style="width: 350px;">{{ prod.description}}</td>
            <td style="width: 150px;">{{ prod.ovp_category}}</td>
            <td style="width: 150px;">{{ prod.ovp_version}}</td>
            <td><a href="{{ prod.product_documentation}}" target="_blank" rel="noopener">{{ prod.product_documentation}}</a></td>
            <td style="width: 150px;">{{ prod.sut_version}}</td>
            <td style="width: 150px;">{{ prod.sut_hw_version}}</td>
          </tr>
        </tbody>
    </table>
  </div>
</div>