@import play.api.libs.json.JsValue @(fortunes: Seq[JsValue]) @main("Fortunes") { @fortunes.map { fortune => }
id message
@{(fortune \ "_id").as[Int]} @{(fortune \ "message").as[String]}
}