Merge pull request #2013 from kazuki43zoo/avatarLink
Change to avatar image link from avatar image
commit 9812f66b0d497dbaba6c1cd8a803be003e2e17f8
2 parents 0f52dc4 + 1c118b8
@Naoki Takezoe Naoki Takezoe authored on 22 May 2018
GitHub committed on 22 May 2018
Showing 14 changed files
View
2
■■■
src/main/twirl/gitbucket/core/account/members.scala.html
} else {
@members.map { member =>
<div class="block">
<div class="block-header">
@helpers.avatar(member.userName, 20) <a href="@helpers.url(member.userName)">@member.userName</a>
@helpers.avatarLink(member.userName, 20) <a href="@helpers.url(member.userName)">@member.userName</a>
@if(member.isManager){ (Manager) }
</div>
</div>
}
View
4
src/main/twirl/gitbucket/core/admin/userlist.scala.html
<a href="@context.path/admin/users/@account.userName/_edituser">Edit</a>
}
</div>
<div class="strong">
@helpers.avatar(account.userName, 20)
@helpers.avatarLink(account.userName, 20)
<a href="@helpers.url(account.userName)">@account.userName</a>
@if(account.isGroupAccount){
(Group)
} else {
}
}
@if(account.isGroupAccount){
@members(account.userName).map { userName =>
@helpers.avatar(userName, 20, tooltip = true)
@helpers.avatarLink(userName, 20, tooltip = true)
}
}
</div>
<div>
View
src/main/twirl/gitbucket/core/helper/activities.scala.html
View
src/main/twirl/gitbucket/core/helper/commitcomment.scala.html
View
src/main/twirl/gitbucket/core/issues/commentlist.scala.html
View
src/main/twirl/gitbucket/core/issues/issueinfo.scala.html
View
src/main/twirl/gitbucket/core/pulls/compare.scala.html
View
src/main/twirl/gitbucket/core/releases/list.scala.html
View
src/main/twirl/gitbucket/core/releases/release.scala.html
View
src/main/twirl/gitbucket/core/repo/blob.scala.html
View
src/main/twirl/gitbucket/core/repo/commit.scala.html
View
src/main/twirl/gitbucket/core/repo/files.scala.html
View
src/main/twirl/gitbucket/core/repo/forked.scala.html
View
src/main/twirl/gitbucket/core/wiki/history.scala.html