Add ability to display and edit the team's description
This commit is contained in:
parent
fd68564b3f
commit
97fa69a361
5 changed files with 72 additions and 13 deletions
|
@ -9,7 +9,7 @@
|
|||
<div class="org-view container" ng-show="!loading && organization">
|
||||
<div class="organization-header" organization="organization"></div>
|
||||
|
||||
<div class="team-listing" ng-repeat="team in organization.teams">
|
||||
<div class="team-listing" ng-repeat="(name, team) in organization.teams">
|
||||
<div class="team-title">
|
||||
<i class="fa fa-group"></i>
|
||||
<span ng-show="team.can_view">
|
||||
|
@ -19,6 +19,6 @@
|
|||
{{ team.name }}
|
||||
</span>
|
||||
</div>
|
||||
<div class="team-description markdown-view" content="team.description"></div>
|
||||
<div class="team-description markdown-view" content="team.description" first-line-only="true"></div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
Reference in a new issue