Redesign the teams page to use a table

Allows for faster loading and easier viewing of important information about teams
This commit is contained in:
Joseph Schorr 2016-08-18 17:44:36 -04:00
parent 98206310bd
commit 6ebb417923
11 changed files with 194 additions and 168 deletions

View file

@ -71,7 +71,8 @@ angular.module('quay').directive('createEntityDialog', function () {
});
};
$scope.permissionsAdded = function() {
$scope.permissionsAdded = function(repositories) {
$scope.entity['repo_count'] = repositories.length;
$scope.hide();
};