You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

22 lines
459 B

@(users: Seq[User])
@main("Title Page") {
<h2>Users</h2>
<table>
<tr>
<th>Id</th>
<th>Email</th>
<th>Created At</th>
<th>Updated At</th>
</tr>
@for(user <- users){
<tr>
<td>@user.id</td>
<td>@user.email</td>
<td>@user.createdAt</td>
<td>@user.updatedAt</td>
</tr>
}
</table>
}