Advertisement
Guest User

Untitled

a guest
Jan 27th, 2017
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. <div>
  2. <table class="table">
  3. <tr>
  4. <th>@Html.Label("Id")</th>
  5. <th>@Html.Label("Asunto")</th>
  6. <th>@Html.Label("Detalle")</th>
  7. <th>@Html.Label("Fecha")</th>
  8. </tr>
  9. @foreach (var item in Model.notas)
  10. {
  11. <tr>
  12. <td>@Html.DisplayFor(modelItem => item.Id)</td>
  13. <td>@Html.DisplayFor(modelItem => item.Asunto)</td>
  14. <td>@Html.DisplayFor(modelItem => item.Detalle)</td>
  15. <td>@Html.DisplayFor(modelItem => item.Fecha)</td>
  16. </tr> }
  17. </table>
  18. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement