MovieBase_Project/MovieBase/Views/Search/Search.cshtml

13 lines
221 B
Plaintext
Raw Normal View History

2019-05-05 21:59:25 +02:00
@model MovieBase.Models.Movie
@if (Model != null)
{
Html.RenderPartial("_Details", Model);
@Html.ActionLink("Add this to watched list", "Create", "Movie", null, null);
2019-05-05 21:59:25 +02:00
}
else
{
<p>Search returns no record</p>
}