Skip to content

Instantly share code, notes, and snippets.

@hexx
Created May 26, 2012 12:35
Show Gist options
  • Save hexx/2793793 to your computer and use it in GitHub Desktop.
Save hexx/2793793 to your computer and use it in GitHub Desktop.
board.scala.html
@import com.github.hexx.messageboard.Message
<table class="table table-striped">
<thead>
<tr><th>Name</th><th>Message</th><th>Date</th></tr>
</thead>
<tbody>
@for(m <- Message.query.sort(_.date desc).asIterator) {
<tr><td>@m.name</td><td>@m.message</td><td>@m.date</td></tr>
}
</tbody>
</table>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment