Advertisement
Guest User

Untitled

a guest
Jun 22nd, 2017
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.53 KB | None | 0 0
  1. .fields
  2. %table
  3. %tr
  4. %td.tit Tipo Victima
  5. %td.inp= collection_select(:victima, :tipo, Mantenedor.tipovictimas, :valor, :valor, :prompt => 'Seleccione Tipo Víctima')
  6. %td.tit Tipo Identificacion
  7. %td.inp= collection_select(:victima, :tipoidentificacion, Mantenedor.tipoidentificacions, :valor, :valor)
  8. %td.tit N°
  9. %td.inp= f.text_field :rut
  10. %tr
  11. %td.tit Nombres
  12. %td.inp= f.text_field :nombres
  13. %tr
  14. %td.tit Apellidos
  15. %td.inp= f.text_field :apellidos
  16. %tr
  17. %td.tit Cargo
  18. %td.inp= collection_select(:victima, :cargo, Mantenedor.cargovictimas, :valor, :valor, :prompt => 'Seleccione Cargo Víctima')
  19. %td.tit Sexo
  20. %td.inp= collection_select(:victima, :sexo, Mantenedor.tiposexos, :valor, :valor)
  21. %td.tit Edad
  22. %td.inp= f.text_field :edad
  23. %tr
  24. %td.tit Dirección
  25. %td.inp= f.text_field :direccion
  26. %tr
  27. %td.tit Región
  28. %td.inp= collection_select(:victima, :region, Mantenedor.regiones, :misc, :valor, :prompt => 'Seleccione región')
  29. %td.tit Comuna
  30. %td.inp= collection_select(:victima, :comuna, Mantenedor.comunas, :valor, :valor, :prompt => 'Seleccione comuna')
  31. %td.tit Telefono
  32. %td.inp= f.text_field :telefono
  33. %tr
  34. %td.tit E-Mail
  35. %td.inp=f.text_field :email
  36. %tr
  37. %td.tit Información Adicional
  38. %td.inp= f.text_area :otros ,:rows => 5, :cols => 100
  39.  
  40. = f.hidden_field :_destroy
  41. = link_to_remove_fields "Eliminar Victima", f
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement