templates/diagnosticos_historia_clinica/form_dx.html.twig line 1

Open in your IDE?
  1. {{ form_start(form_dx,{ 'attr': { 'id': 'dx_form' } }) }}
  2.     <div class="row">
  3.         <div class="col-md-2">
  4.             {{ form_row(form_dx.tipo) }}
  5.         </div>
  6.         <div class="col-md-2">
  7.             {{ form_row(form_dx.cie10) }}
  8.         </div>
  9.         <div class="col-md-6">
  10.             {{ form_row(form_dx.descripcion) }}
  11.         </div>
  12.         {{ form_row(form_dx.cie10_id) }}
  13.         <div class="col-md-2">
  14.             <br>
  15.             <button type="button" class="btn btn-danger btn-sm" id="agregar_cie10">Agregar</button>
  16.         </div>
  17.     </div>    
  18. {{ form_end(form_dx) }}