Java back-end server programming; includes various exercises
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.
 
 
 

18 lines
445 B

<!DOCTYPE html>
<html lang="en" xmlns:th="http://www.thymeleaf.org">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Students page</title>
</head>
<body>
<div>Welcome to the Haaga-Helia!</div>
<table>
<tr th:each="student: ${students}">
<td th:text="${student.getfirstName()} + ' ' + ${student.getlastName()}">Unknown Name</td>
<tr>
</table>
</body>
</html>