@(account: model.Account, groupNames: List[String], active: String,
isGroupManager: Boolean = false)(body: Html)(implicit context: app.Context)
@import context._
@import view.helpers._
@html.main(account.userName){
@avatar(account.userName, 200)
@account.fullName
@account.userName
@if(account.url.isDefined){
}
Joined on @date(account.registeredDate)
@if(groupNames.nonEmpty){
}
- Repositories
@if(account.isGroupAccount){
- Members
} else {
- Public Activity
}
@if(loginAccount.isDefined && loginAccount.get.userName == account.userName){
-
}
@if(loginAccount.isDefined && account.isGroupAccount && isGroupManager){
-
}
@body
}