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