@(users: List[model.Account])(implicit context: app.Context) @import context._ @import view.helpers @html.main("Manage Users"){
New User
@users.map { account => }
Username Mail Address Type URL Registered Updated Last Login
@account.userName @account.mailAddress @if(account.isAdmin){ Administrator } else { Normal } @account.url @helpers.datetime(account.registeredDate) @helpers.datetime(account.updatedDate) @account.lastLoginDate.map(helpers.datetime)
}