Advertisement
TankorSmash

Untitled

Jan 25th, 2013
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 1.74 KB | None | 0 0
  1. @model NextFlicksMVC4.Views.Movies.ViewModels.NfImdbRtViewModel
  2.  
  3. @*@model NextFlicksMVC4.Views.Movies.ViewModels.MovieWithGenreViewModel*@
  4. @*@model NextFlicksMVC4.Models.Movie*@ @* This is a page for showing each individual title/Movie
  5.  
  6. Will need to show all the relevant data here. Title, Year, Length, MPAA Rating  *@
  7. <div id=@Html.DisplayFor(model => model.Movie.movie_ID) class="NIT_entry">
  8.     <div class="title_images">
  9.         <div class="title_boxart">
  10.             <a href=@Html.DisplayFor(model => model.Movie.web_page) >
  11.             <img src=@Html.DisplayFor(model => model.Boxarts.boxart_150) />
  12. </a>
  13.         </div>
  14.     </div>
  15.    
  16.     <div class="title_entry_top">
  17.        
  18.         <div class="title_title">
  19.             @Html.DisplayFor(model => model.Movie.short_title)
  20.         </div>
  21.         <div class="title_webpage">
  22.             <a href=@Html.DisplayFor(model => model.Movie.web_page) >More Details</a>
  23.         </div>
  24.  
  25.     </div>        
  26.     <div class="title_entry_middle">
  27.     <div  class="title_entry_left">
  28.         <div class="title_year">
  29.             @Html.DisplayFor(model => model.Movie.year)
  30.         </div>
  31.         <div class="title_runtime">
  32.             @Html.DisplayFor(model => model.Movie.runtime)
  33.         </div>
  34.  
  35.     </div>
  36.     <div class="title_entry_right">
  37.        
  38.  
  39.         <div class="title_rating">
  40.             @Html.DisplayFor(model => model.Movie.tv_rating)
  41.         </div>
  42.         <div class="title_tmeter">
  43.             @Html.DisplayFor(model => model.OmdbEntry.t_Meter)
  44.         </div>
  45.     </div>
  46.     </div>
  47.    
  48.     <div class="title_entry_bottom">
  49.        
  50.         <div class="title_genres">
  51.            @Html.DisplayFor(model => model.Genres)        </div>
  52.            
  53.     </div>
  54.  
  55. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement