@(account: Option[gitbucket.core.model.Account], extraMailAddresses: List[String], error: Option[Any] = None)(implicit context: gitbucket.core.controller.Context) @gitbucket.core.html.main(if(account.isEmpty) "New user" else "Update user"){ @gitbucket.core.admin.html.menu("users"){ @gitbucket.core.helper.html.error(error)
@if(account.isDefined){
}
@if(account.map(_.password.nonEmpty).getOrElse(true)){
}
Additional Mail Address: @extraMailAddresses.zipWithIndex.map { case (mail, idx) => }
@gitbucket.core.helper.html.uploadavatar(account)
@if(account.isEmpty){ } else { } Cancel
} }