2011-03-11 09:04:56 +00:00
|
|
|
<%@ Control Language="C#" Inherits="System.Web.Mvc.ViewUserControl<List<NzbDrone.Web.Models.SeriesSearchResultModel>>" %>
|
|
|
|
<div id="searchResults">
|
2011-03-28 23:38:05 +00:00
|
|
|
<fieldset>
|
2011-03-11 09:04:56 +00:00
|
|
|
<legend>Search Results</legend>
|
2011-04-10 02:44:01 +00:00
|
|
|
<%
|
|
|
|
if (Model.Count == 0)
|
|
|
|
{%>
|
2011-03-28 23:38:05 +00:00
|
|
|
<b>No results found for the series name</b>
|
2011-04-10 02:44:01 +00:00
|
|
|
<%
|
|
|
|
}
|
|
|
|
%>
|
|
|
|
<%
|
|
|
|
int r = 0;%>
|
|
|
|
<%
|
|
|
|
foreach (var result in Model)
|
|
|
|
{%>
|
|
|
|
<%:Html.RadioButton("selectedSeries", result.TvDbId, r == 0,
|
|
|
|
new {@class = "searchRadio examplePart", id = "searchRadio_" + r})%>
|
2011-03-28 23:38:05 +00:00
|
|
|
<b>
|
|
|
|
<%:result.TvDbName + " (" + result.FirstAired.ToShortDateString()%>)
|
2011-04-10 02:44:01 +00:00
|
|
|
<%:Html.TextBox(result.TvDbName + "_text", result.TvDbName,
|
|
|
|
new {id = result.TvDbId + "_text", style = "display:none"})%>
|
|
|
|
<%
|
|
|
|
|
|
|
|
r++;%>
|
2011-03-28 23:38:05 +00:00
|
|
|
<br />
|
|
|
|
<%
|
2011-04-10 02:44:01 +00:00
|
|
|
}%>
|
2011-03-11 09:04:56 +00:00
|
|
|
</fieldset>
|
2011-03-28 23:38:05 +00:00
|
|
|
</div>
|