Matteo Scandolo | 4eb4ccb | 2016-01-26 11:02:16 -0800 | [diff] [blame] | 1 | <!-- 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 Scandolo | c603650 | 2016-01-26 15:17:10 -0800 | [diff] [blame] | 29 | <!--<pre>{{users | json}}</pre>--> |
| 30 | |
Matteo Scandolo | 4eb4ccb | 2016-01-26 11:02:16 -0800 | [diff] [blame] | 31 | <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 Scandolo | c603650 | 2016-01-26 15:17:10 -0800 | [diff] [blame] | 42 | </div> |