@(tweetForm: Form[String], tweets: List[Tweet]) @import helper._ @import helper.twitterBootstrap._ @main("Welcome to Play 2.0") {
@form(routes.Application.tweet()) { @textarea(tweetForm("content")) }
@for(tweet <- tweets) {
@tweet.content
@tweet.createdAt
}
}