@import controllers.admin.{routes => adminroutes} @(laboratoryForm: Form[model.form.data.LaboratoryFormData])(implicit messages: Messages) @implicitField = @{ helper.FieldConstructor(fieldConstructorTemplate.f) }
@messages("laboratory.register.title")
@helper.form(action = adminroutes.LaboratoryController.add, 'class -> "form-horizontal") { @helper.inputText(laboratoryForm("laboratory.name"), 'class -> "form-control", 'placeholder -> "Nombre del laboratory") @helper.inputText(laboratoryForm("laboratory.location"), 'class -> "form-control", 'placeholder -> "¿Dónde está el laboratory?") @helper.inputText(laboratoryForm("laboratory.administration"), 'class -> "form-control", 'placeholder -> "¿Quién está a cargo?")
}
@helpPanel(messages("laboratory.help.head"), messages("laboratory.help.body"))