| 12345678910111213141516171819202122232425262728293031 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta content='text/html; charset=UTF-8' http-equiv='Content-Type' />
- </head>
- <body>
- <h1>SOPORTE TÉCNICO </h1>
- <p>
- Por favor analice la siguiente información y hágala llegar a los encargados de POS Boutique
- <br>
- <table>
- <thead>
- <th>Registró</th>
- <th>Sucursal</th>
- <th>Tipo de usuario</th>
- <th>Descripción del error</th>
- <th>Observaciones/Comentarios</th>
- </thead>
- <tbody>
- <tr>
- <td><%= @user.full_name %><br><small><%= @user.userid %></small></td>
- <td><%= @sucursal %></td>
- <td class="text-center"><%= @usertype %></td>
- <td><%= @error_descriptor %></td>
- <td><%= @comments %></td>
- </tr>
- </tbody>
- </table>
- </p>
- </body>
- </html>
|