Scala-Play-Slick-Demo/app/views/cars.scala.html
2020-05-16 15:40:23 +05:30

21 lines
336 B
HTML

@import com.example.user.Car
@(cars: Seq[Car])
@main("Cars Page") {
<h2>Cars</h2>
<table>
<tr>
<th>Id</th>
<th>Model</th>
</tr>
@for(car <- cars){
<tr>
<td>@car.id</td>
<td>@car.model</td>
</tr>
}
</table>
}