@(eventCreateForm: Form[forms.sample.EventCreateData])(implicit flash: Flash, messages: Messages) @import BootstrapHelper._ @main("EventCreate", eventCreateForm) { @helper.form(action = controllers.sample.routes.EventCreate.create(), 'role -> "form", 'class -> "form-horizontal"){
EventCreate
@helper.inputText(eventCreateForm("eventId")) @helper.inputText(eventCreateForm("eventNm")) @helper.inputDate(eventCreateForm("eventDate")) @helper.inputText(eventCreateForm("homepage"))
@helper.inputText(eventCreateForm("place")) @helper.inputText(eventCreateForm("capacity")) @helper.inputText(eventCreateForm("eventType")) @helper.inputText(eventCreateForm("content"))
@helper.inputText(eventCreateForm("publicStatus"))
} }