blob: 27f0d96599fef75ef1d00dc8275caf70d7bf1cd8 [file] [log] [blame]
Matteo Scandolo5d568612016-01-26 11:02:16 -08001<!-- Home page partial html -->
2<div id="home" class="container">
3 <div class="main-left">
4 <img src="/imgs/home.jpg">
5 </div>
6
7 <div class="main-right">
8 <div class="move-down">
9 <div class="bundle-title">
10 <h4>Welcome Dad!</h4>
11 <h5>You are subscribed to the</h5>
12 <h3>{{bundle_name}}</h3>
13 </div>
14
15 <p>{{bundle_desc}}</p>
16
17
18 <h4>Users</h4>
19 <table class="users">
20 <thead>
21 <tr>
22 <th class="user-pic"></th>
23 <th>Name</th>
24 <th>Last Login</th>
25 </tr>
26 </thead>
27 <tbody>
28
29 <tr ng-repeat="user in users" class="fadein">
30 <td class="user-pic">
31 <img ng-src="{{'/imgs/' + user.icon_id + '.jpg'}}">
32 </td>
33 <td>{{user.name}}</td>
34 <td>{{shared.userActivity[user.id]}}</td>
35 </tr>
36 </tbody>
37 </table>
38 </div>
39 </div>
40</div>