contact_support.html.erb 869 B

12345678910111213141516171819202122232425262728293031
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta content='text/html; charset=UTF-8' http-equiv='Content-Type' />
  5. </head>
  6. <body>
  7. <h1>SOPORTE TÉCNICO </h1>
  8. <p>
  9. Por favor analice la siguiente información y hágala llegar a los encargados de POS Boutique
  10. <br>
  11. <table>
  12. <thead>
  13. <th>Registró</th>
  14. <th>Sucursal</th>
  15. <th>Tipo de usuario</th>
  16. <th>Descripción del error</th>
  17. <th>Observaciones/Comentarios</th>
  18. </thead>
  19. <tbody>
  20. <tr>
  21. <td><%= @user.full_name %><br><small><%= @user.userid %></small></td>
  22. <td><%= @sucursal %></td>
  23. <td class="text-center"><%= @usertype %></td>
  24. <td><%= @error_descriptor %></td>
  25. <td><%= @comments %></td>
  26. </tr>
  27. </tbody>
  28. </table>
  29. </p>
  30. </body>
  31. </html>