Work in progress: Add the team management page
This commit is contained in:
parent
100ec563fa
commit
ecbd1f1ef3
9 changed files with 272 additions and 6 deletions
17
static/directives/organization-header.html
Normal file
17
static/directives/organization-header.html
Normal file
|
@ -0,0 +1,17 @@
|
|||
<div class="organization-header-element">
|
||||
<img src="//www.gravatar.com/avatar/{{ organization.gravatar }}?s=24&d=identicon">
|
||||
<span class="organization-name" ng-show="teamName">
|
||||
<a href="/organization/{{ organization.name }}">{{ organization.name }}</a>
|
||||
</span>
|
||||
<span class="organization-name" ng-show="!teamName">
|
||||
{{ organization.name }}
|
||||
</span>
|
||||
|
||||
<span ng-show="teamName">
|
||||
<span class="divider">/</span>
|
||||
<i class="fa fa-group"></i>
|
||||
<span class="team-name">
|
||||
{{ teamName }}
|
||||
</span>
|
||||
</span>
|
||||
</div>
|
Reference in a new issue