Work on adding new team button
This commit is contained in:
parent
2f78a4d6ea
commit
221a7d4998
3 changed files with 5 additions and 2 deletions
|
@ -14,4 +14,5 @@
|
|||
{{ teamName }}
|
||||
</span>
|
||||
</span>
|
||||
<span ng-transclude></span>
|
||||
</div>
|
||||
|
|
|
@ -308,7 +308,7 @@ quayApp.directive('organizationHeader', function () {
|
|||
priority: 0,
|
||||
templateUrl: '/static/directives/organization-header.html',
|
||||
replace: false,
|
||||
transclude: false,
|
||||
transclude: true,
|
||||
restrict: 'C',
|
||||
scope: {
|
||||
'organization': '=organization',
|
||||
|
|
|
@ -7,7 +7,9 @@
|
|||
</div>
|
||||
|
||||
<div class="org-view container" ng-show="!loading && organization">
|
||||
<div class="organization-header" organization="organization"></div>
|
||||
<div class="organization-header" organization="organization">
|
||||
<button class="btn btn-success"><i class="fa fa-group"></i> Create Team</button>
|
||||
</div>
|
||||
|
||||
<div class="row visible-md visible-lg">
|
||||
<div class="col-md-7"></div>
|
||||
|
|
Reference in a new issue