Group description now displayed on group page

It gets displayed instead of the account username
This commit is contained in:
Boris Bera
2015-07-04 15:03:53 -04:00
parent 4c417daee5
commit 82b056bd43
2 changed files with 8 additions and 4 deletions

View File

@@ -10,7 +10,11 @@
<div class="block">
<div class="account-image">@avatar(account.userName, 270)</div>
<div class="account-fullname">@account.fullName</div>
<div class="account-username">@account.userName</div>
@if(account.isGroupAccount) {
<div class="group-description">@account.groupDescription</div>
} else {
<div class="account-username">@account.userName</div>
}
</div>
<div class="block">
@if(account.url.isDefined){

View File

@@ -403,7 +403,8 @@ div.signin-form {
font-weight: bold;
}
.account-username {
.account-username,
.group-description {
margin-top: 10px;
font-size: 140%;
color: #888888;
@@ -1780,5 +1781,4 @@ div.container.blame-container{
/****************************************************************************/
a[href]:after {
display: none;
}
}