summaryrefslogtreecommitdiffstats
path: root/framework/src/onos/apps/demo/cord-gui/src/main/webapp/app/view/home/home.html
blob: 27f0d96599fef75ef1d00dc8275caf70d7bf1cd8 (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
<!-- Home page partial html -->
<div id="home" class="container">
    <div class="main-left">
        <img src="/imgs/home.jpg">
    </div>

    <div class="main-right">
        <div class="move-down">
            <div class="bundle-title">
                <h4>Welcome Dad!</h4>
                <h5>You are subscribed to the</h5>
                <h3>{{bundle_name}}</h3>
            </div>

            <p>{{bundle_desc}}</p>


            <h4>Users</h4>
            <table class="users">
                <thead>
                    <tr>
                        <th class="user-pic"></th>
                        <th>Name</th>
                        <th>Last Login</th>
                    </tr>
                </thead>
                <tbody>

                <tr ng-repeat="user in users" class="fadein">
                        <td class="user-pic">
                            <img ng-src="{{'/imgs/' + user.icon_id + '.jpg'}}">
                        </td>
                        <td>{{user.name}}</td>
                        <td>{{shared.userActivity[user.id]}}</td>
                    </tr>
                </tbody>
            </table>
        </div>
    </div>
</div>