2013-11-04 21:21:49 +00:00
< div class = "loading" ng-show = "loading" >
< i class = "fa fa-spinner fa-spin fa-3x" > < / i >
< / div >
< div class = "loading" ng-show = "!loading && !organization" >
No matching organization found
< / div >
< div class = "org-view container" ng-show = "!loading && organization" >
< div class = "organization-header" organization = "organization" > < / div >
2013-11-04 21:39:29 +00:00
2013-11-05 19:47:46 +00:00
< div class = "row visible-md visible-lg" >
< div class = "col-md-7" > < / div >
< div class = "col-md-3 header-col" ng-show = "organization.is_admin" >
2013-11-05 03:58:21 +00:00
Team Permissions
< i class = "info-icon fa fa-info-circle" data-placement = "bottom" data-original-title = "" title = ""
data-content="Global permissions for the team and its members< br > < br > < dl > < dt > Member< / dt > < dd > Permissions are assigned on a per repository basis< / dd > < dt > Creator< / dt > < dd > A team can create its own repositories< / dd > < dt > Admin< / dt > < dd > A team has full control of the organization< / dd > < / dl > ">< / i >
< / div >
< / div >
2013-11-05 01:17:58 +00:00
< div class = "team-listing" ng-repeat = "(name, team) in organization.teams" >
2013-11-05 03:58:21 +00:00
< div class = "row" >
2013-11-05 19:47:46 +00:00
< div class = "col-md-7" >
2013-11-05 03:58:21 +00:00
< div class = "team-title" >
< i class = "fa fa-group" > < / i >
< span ng-show = "team.can_view" >
< a href = "/organization/{{ organization.name }}/teams/{{ team.name }}" > {{ team.name }}< / a >
< / span >
< span ng-show = "!team.can_view" >
{{ team.name }}
< / span >
< / div >
< div class = "team-description markdown-view" content = "team.description" first-line-only = "true" > < / div >
< / div >
2013-11-05 19:47:46 +00:00
< div class = "col-md-3 control-col" ng-show = "organization.is_admin" >
< span class = "role-group" current-role = "team.role" role-changed = "setRole(role, team.name)" roles = "teamRoles" > < / span >
< / div >
< div class = "col-md-1 control-col delete-col" ng-show = "organization.is_admin" >
< button class = "btn btn-danger" ng-click = "askDeleteTeam(team.name)" > Delete Team< / button >
2013-11-05 03:58:21 +00:00
< / div >
2013-11-05 00:11:13 +00:00
< / div >
2013-11-04 21:39:29 +00:00
< / div >
2013-11-04 21:21:49 +00:00
< / div >
2013-11-05 03:58:21 +00:00
<!-- Modal message dialog -->
< div class = "modal fade" id = "cannotChangeTeamModal" >
< div class = "modal-dialog" >
< div class = "modal-content" >
< div class = "modal-header" >
< button type = "button" class = "close" data-dismiss = "modal" aria-hidden = "true" > × < / button >
< h4 class = "modal-title" > Cannot change team< / h4 >
< / div >
< div class = "modal-body" >
You do not have permission to change properties on teams.
< / div >
< div class = "modal-footer" >
< button type = "button" class = "btn btn-default" data-dismiss = "modal" > Close< / button >
< / div >
< / div > <!-- /.modal - content -->
< / div > <!-- /.modal - dialog -->
< / div > <!-- /.modal -->
2013-11-05 19:47:46 +00:00
<!-- Modal message dialog -->
< div class = "modal fade" id = "confirmdeleteModal" >
< div class = "modal-dialog" >
< div class = "modal-content" >
< div class = "modal-header" >
< button type = "button" class = "close" data-dismiss = "modal" aria-hidden = "true" > × < / button >
< h4 class = "modal-title" > Delete Team?< / h4 >
< / div >
< div class = "modal-body" >
Are you sure you would like to delete this team? This < b > cannot be undone< / b > .
< / div >
< div class = "modal-footer" >
< button type = "button" class = "btn btn-danger" ng-click = "deleteTeam()" > Delete Team< / button >
< button type = "button" class = "btn btn-default" data-dismiss = "modal" > Close< / button >
< / div >
< / div > <!-- /.modal - content -->
< / div > <!-- /.modal - dialog -->
< / div > <!-- /.modal -->