Guest User

Untitled

a guest
Feb 13th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.54 KB | None | 0 0
  1. <footer>
  2. <div class="PiePagina"><img src="~/Content/ImagenCorp/Fondos/banner_inferior.png" alt="" ></div>
  3. </footer>
  4.  
  5. <div role="tabpanel" class="tab-pane" id="empleados">
  6. <div class="row" style="margin-top:10px">
  7. <div class="col-md-12">
  8. <a href="javascript:;" class="importar empleados">
  9. <button class="btn btn-primary btn btn-xs" id="openUpload" style="background-color:#3399FF;color:#FFFFFF">
  10. <span class="glyphicon glyphicon-chevron-up" aria-hidden="true"></span> Importar
  11. </button>
  12. </a>
  13. </div>
  14. </div>
  15. <div style="margin:15px 0 0 0;">
  16. <table class="table table-striped table-hover table-bordered dt-responsive" id="tbl-empleados" style="width: 100%">
  17. <thead style="">
  18. <tr>
  19. <th>Empleado</th>
  20. <th>Gerente</th>
  21. <th>Evaluación</th>
  22. <th>Sueldo Actual</th>
  23. <th>CR</th>
  24. <th>Mover a
  25. <br />Mínimo</th>
  26. <th>Matriz de
  27. <br />Mérito</th>
  28. <th>Ajuste</th>
  29. </tr>
  30. </thead>
  31. <tbody style="">
  32. @foreach (var item in Model.Empleados) {
  33. <tr>
  34. <td>@item.vEmpleado</td>
  35. <td>@item.vGerente</td>
  36. <td>@item.vEvaluacion</td>
  37. <td>@item.dSueldoActual.ToString("C2")</td>
  38. <td>@item.dCR.ToString("P2")</td>
  39. <td>@(item.bMinimo ? "Sí" : "No")</td>
  40. <td>@(item.bMerito ? "Sí" : "No")</td>
  41. <td>@(item.bAjuste ? "Sí" : "No")</td>
  42. </tr>
  43. }
  44. </tbody>
  45. </table>
  46. </div>
  47. </div>
Add Comment
Please, Sign In to add comment