Request information about movie from IMDB.
@model MovieNavigator.Web.ViewModels.RecentSearchViewModel
@if (Model.Items.Any())
{
<div class="col-md-4">
<h2>Recent search list</h2>
<table class="table table-striped">
<thead>
<tr>
<th>Search query</th>
<th>Found items</th>
</tr>
</thead>
<tbody>
@foreach (var movie in Model.Items)
{
<tr>
<td>@movie.SearchQuery</td>
<td>@movie.FoundItems</td>
</tr>
}
</tbody>
</table>
</div>
}