Newer
Older
GitBucket / src / main / twirl / gitbucket / core / account / editgroup.scala.html
@Naoki Takezoe Naoki Takezoe on 24 Jun 2017 484 bytes Small fix of group editing form
@(account: gitbucket.core.model.Account,
  members: List[gitbucket.core.model.GroupMember],
  info: Option[Any])(implicit context: gitbucket.core.controller.Context)
@gitbucket.core.html.main("Edit group"){
  @gitbucket.core.account.html.menu("profile", account.userName, true){
    @gitbucket.core.helper.html.information(info)
    <h2>Edit group</h2>
    @gitbucket.core.account.html.groupform(Some(account), members, s"${context.path}/${account.userName}/_editgroup", false)
  }
}