Guest User

Untitled

a guest
Jul 27th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.80 KB | None | 0 0
  1. @model IEnumerable<TrainingDotNetCoreMVC.Models.MovieModel>
  2. @{
  3. ViewData["Title"] = "Movie index";
  4. }
  5. <h1>@ViewData["Title"]</h1>
  6. <table class="table">
  7. <tr>
  8. <th>รหัสภาพยนต์</th>
  9. <th>ชื่อภาพยนต์</th>
  10. <th>รูป</th>
  11. <th>เข้าฉายเมื่อ</th>
  12. <th>หมวดหมู่</th>
  13. <th>ความยาว (นาที)</th>
  14. </tr>
  15. @foreach (var item in Model) {
  16. <tr>
  17. <td>@item.id</td>
  18. <td>@item.title</td>
  19. <td>
  20. <img src="@item.coverImg" height="80px" />
  21. </td>
  22. <td>@item.releaseDate.Value.ToString("dd MMM yyyy")</td>
  23. <td>@item.genre</td>
  24. <td>@item.duration</td>
  25. </tr>
  26. }
  27. </table>
Add Comment
Please, Sign In to add comment