@(js: String => String, commentForm: Form[Comment])
@import helper._
@import helper.twitterBootstrap._
@title = {
Add a new comment Or edit an existing comment
}
@main(title, nav = "comment") {
@if(commentForm.hasErrors) {
Oops Please fix all errors
}
@helper.form(action = routes.Comments.submit, args = 'id -> "commentForm") {
}
}