Created
May 26, 2012 12:35
-
-
Save hexx/2793793 to your computer and use it in GitHub Desktop.
board.scala.html
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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