@(username: String, newDocumentForm: Form[controllers.my.NewDocumentData], message: Option[String] = None)(implicit messages: Messages, webJarsUtil: org.webjars.play.WebJarsUtil) Upload Document - Enter Metadata @Html(webJarsUtil.script("1.12.0/jquery.min.js")) @Html(webJarsUtil.requireJs(routes.Assets.versioned("javascripts/my/upload/step1.js")))
@helper.form(action = controllers.my.routes.UploadController.storeDocumentMetadata(username.toLowerCase), args = 'autocomplete -> "off", 'class -> "step1") {

More Fields

@helper.inputText(newDocumentForm("description"), args = '_label -> "Description") @helper.inputText(newDocumentForm("language"), args = '_label -> "Language") @helper.inputText(newDocumentForm("source"), args = '_label -> "Source") @helper.inputText(newDocumentForm("edition"), args = '_label -> "Edition")
Cancel
}