Guest User

Untitled

a guest
Aug 6th, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.44 KB | None | 0 0
  1. #customers {
  2. font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
  3. border-collapse: collapse;
  4. width: 100%;
  5. }
  6. #customers2 {
  7. font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
  8. border-collapse: collapse;
  9. width: 100%;
  10. }
  11.  
  12. #customers td, #customers th {
  13. border: 1px solid #ddd;
  14. padding: 8px;
  15. }
  16.  
  17. #customers2 td, #customers2 th {
  18. border: 1px solid #ddd;
  19. padding: 8px;
  20. }
  21.  
  22. #customers th {
  23. padding-top: 12px;
  24. padding-bottom: 12px;
  25. text-align: left;
  26. background-color: #3e4e84;
  27. color: white;
  28. }
  29.  
  30. #customers2 th {
  31. padding-top: 12px;
  32. padding-bottom: 12px;
  33. text-align: left;
  34. background-color: black;
  35. color: white;
  36. }
  37.  
  38. <table id="customers">
  39. <thead>
  40. <tr>
  41. <th>Nome</th>
  42. <th>RG</th>
  43. <th>Data Entrada</th>
  44. <th>Data Saida</th>
  45. <th>Departamento</th>
  46. <th>Responsável</th>
  47. <th>Atualizar Saída</th>
  48.  
  49. </tr>
  50. </thead>
  51. <tbody>
  52.  
  53.  
  54.  
  55. @foreach (var v in Model)
  56. {
  57. <tr>
  58.  
  59. <td>@v.Nome</td>
  60. <td>@v.Rg</td>
  61. <td>@v.DtIntegracao</td>
  62. <td>@v.Validade</td>
  63. <td>@v.Departamento</td>
  64. <td>@v.Responsavel.Nome</td>
  65.  
  66. <td>@Html.ActionLink("Atualizar", "FormUpdate", new { id = v.Id }, new { @class = "icon-edit" })</td>
  67.  
  68.  
  69. </tr>
  70.  
  71. }
  72.  
  73. </tbody>
  74. </table>
Add Comment
Please, Sign In to add comment