Guest User

Untitled

a guest
May 7th, 2017
27
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. @model IEnumerable<tussentijdsetoets.ViewModels.MovieVM>
  2.  
  3.  
  4.  
  5. @foreach (var movie in Model)
  6. {
  7. <img src="~/@movie.Image" alt="image">
  8.  
  9. <h1>@movie.Title</h1>
  10. <p>(@movie.Year)</p>
  11. <p>@movie.Description</p>
  12.  
  13. <h2>The Director</h2>
  14. <p>@movie.Director</p>
  15.  
  16. <h2>Actors</h2>
  17.  
  18. @foreach (var actor in @movie.Actors)
  19. {
  20. <p>@actor.Name</p>
  21. }
  22.  
  23. <h2>How much is this rated?</h2>
  24. <p>@movie.Stars</p>
  25.  
  26. <hr />
  27. }
  28.  
  29.  
  30.  
  31. <h3>@ViewData["msg"]</h3>
Add Comment
Please, Sign In to add comment