@(account: Option[model.Account])(implicit context: app.Context) @import context._ @html.main(if(account.isEmpty) "New User" else "Update User"){ @admin.html.menu("users"){
@if(account.map(_.password.nonEmpty).getOrElse(true)){
}
@helper.html.uploadavatar(account)
Cancel
} }