@(post: Post, commentForm: Form[CommentForm], randomID: String) @import helper._ @main(post.title){ @if(flash.contains("success")) {

@flash.get("success")

} @display(post, mode = "full") @form(routes.Application.postComment(post.id, randomID)) {
Post a comment @inputText( commentForm("fullname"), '_label -> "Full Name:" ) @inputText( commentForm("email"), '_label -> "Email:" ) @textarea( commentForm("content"), '_label -> "Comment:" )


} }