aboutsummaryrefslogtreecommitdiff
path: root/src/main/webapp/apps/frontPageApp
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/webapp/apps/frontPageApp')
-rwxr-xr-xsrc/main/webapp/apps/frontPageApp/frontPage.html15
-rwxr-xr-xsrc/main/webapp/apps/frontPageApp/frontPageApp.js5
2 files changed, 15 insertions, 5 deletions
diff --git a/src/main/webapp/apps/frontPageApp/frontPage.html b/src/main/webapp/apps/frontPageApp/frontPage.html
index 3c433ee..8e067e1 100755
--- a/src/main/webapp/apps/frontPageApp/frontPage.html
+++ b/src/main/webapp/apps/frontPageApp/frontPage.html
@@ -1,10 +1,19 @@
<div class="container">
<navbar/>
-<!-- <ng-include src="'/apps/core/navbar.html'" /> -->
<div class="page-header">
- <h1>Newcomers</h1>
+ <h1>Recent</h1>
</div>
+
+ <h3>Badges</h3>
+ <div>
+ <span ng-repeat="b in recentBadges">
+ <a href="/person/{{b.person.uuid}}/"> {{b.person.name}} </a>
+ <span class="badge-level-{{badge.level}} badge">{{b.badge.name}}</span>
+ </span>
+ </div>
+
+ <h3>Newcomers</h3>
<table class="table">
<thead>
<tr>
@@ -14,7 +23,7 @@
</thead>
<tbody>
<tr ng-repeat="person in persons.rows">
- <td><a href="/person/{{person.uuid}}/">{{person.name}}</a></td>
+ <td><a href="/person/{{person.person.uuid}}/">{{person.person.name}}</a></td>
<td>{{person.badges.length}}</td>
</tr>
</tbody>
diff --git a/src/main/webapp/apps/frontPageApp/frontPageApp.js b/src/main/webapp/apps/frontPageApp/frontPageApp.js
index 624c484..d5af99f 100755
--- a/src/main/webapp/apps/frontPageApp/frontPageApp.js
+++ b/src/main/webapp/apps/frontPageApp/frontPageApp.js
@@ -1,10 +1,11 @@
'use strict';
-var frontPageApp = angular.module('frontPageApp', ['ngGrid', 'person', 'pagingTableService', 'core.directives']).config(function ($routeProvider, $locationProvider) {
+var frontPageApp = angular.module('frontPageApp', ['ngGrid', 'person', 'badge', 'pagingTableService', 'core.directives']).config(function ($routeProvider, $locationProvider) {
$routeProvider.
when('/', {controller: FrontPageCtrl, templateUrl: '/apps/frontPageApp/frontPage.html?noCache=' + noCache});
});
-function FrontPageCtrl($scope, Person, PagingTableService) {
+function FrontPageCtrl($scope, Person, Badge, PagingTableService) {
$scope.persons = PagingTableService.create($scope, PagingTableService.defaultCallback(Person));
+ $scope.recentBadges = Badge.query();
}