aboutsummaryrefslogtreecommitdiffstats
path: root/framework/src/onos/tools/package/archetypes/ui/src/main/resources/archetype-resources/src/main/resources/app/view/sampleCustom/sampleCustom.html
blob: d3d79a10ce9b5b105abf5e6992ee65f81ff18923 (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
<!-- partial HTML -->
<div id="ov-sample-custom">
    <div class="button-panel">
        <div class="my-button" ng-click="getData()">
            Fetch Data
        </div>
    </div>

    <div class="data-panel">
        <table>
            <tr>
                <td> Number </td>
                <td class="number"> {{data.number}} </td>
            </tr>
            <tr>
                <td> Square </td>
                <td class="number"> {{data.square}} </td>
            </tr>
            <tr>
                <td> Cube </td>
                <td class="number"> {{data.cube}} </td>
            </tr>
        </table>

        <p>
            A message from our sponsors:
        </p>
        <p>
            <span class="quote"> {{data.message}} </span>
        </p>
    </div>
</div>