diff --git a/app/services/MembresServ.js b/app/services/MembresServ.js index b7632cf..071c05d 100644 --- a/app/services/MembresServ.js +++ b/app/services/MembresServ.js @@ -8,7 +8,10 @@ MembresServ.addData = function (membre, cb) { PolyUserServ.get(membre.login, function (err, nom) { membre.nom = nom.nom; membre.section = nom.section; - cb(null, membre); + MembresServ.estBureau(membre.login, function (bureau) { + membre.bureau = bureau; + cb(err, membre); + }); }); }; diff --git a/public/css/style.css b/public/css/style.css index 162a77e..6c4c29c 100644 --- a/public/css/style.css +++ b/public/css/style.css @@ -58,4 +58,8 @@ table .ng-enter { table .ng-leave { -webkit-animation: fadeOutLeft 0.5s; animation: fadeOutLeft 0.5s; +} + +.bureau { + color: blue; } \ No newline at end of file diff --git a/public/views/membres.html b/public/views/membres.html index 2fd050f..4353ce8 100644 --- a/public/views/membres.html +++ b/public/views/membres.html @@ -14,7 +14,7 @@
-