course.scala.html 351 Bytes
Newer Older
Narumon Mokpha 's avatar
Narumon Mokpha committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title> Course </title>
</head>
<body>
<h1>All Course</h1>
<table>
    <tr><th> id </th><th>  title  </th><th> description </th></tr>
    @for (course <- courseList){
    <tr><td>@course.id</td><td>@course.title</td><td>@course.description</td></tr>
    }
</table>
</body>
</html>