blob: a3d7fb2fd7803e1356c6529f26cd7eb9d13bae4f [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
Matteo Scandolo2b545462016-01-26 15:17:10 -080029 <!--<pre>{{users | json}}</pre>-->
30
Matteo Scandolo5d568612016-01-26 11:02:16 -080031 <tr ng-repeat="user in users" class="fadein">
32 <td class="user-pic">
33 <img ng-src="{{'/imgs/' + user.icon_id + '.jpg'}}">
34 </td>
35 <td>{{user.name}}</td>
36 <td>{{shared.userActivity[user.id]}}</td>
37 </tr>
38 </tbody>
39 </table>
40 </div>
41 </div>
Matteo Scandolo2b545462016-01-26 15:17:10 -080042</div>