mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-02 00:42:41 +01:00
37 lines
1.5 KiB
Plaintext
37 lines
1.5 KiB
Plaintext
|
|
@using NzbDrone.Web.Helpers
|
|
@model NzbDrone.Web.Models.EpisodeModel
|
|
|
|
<tr class="episodeId_@(Model.EpisodeId) data-row@(ViewData["AltRow"] == null || !(bool)ViewData["AltRow"] ? "" : " alt-row")">
|
|
<td>@Model.EpisodeNumber</td>
|
|
<td>@Model.Title</td>
|
|
<td>@Model.AirDate</td>
|
|
<td class="episodeQuality">@Model.Quality</td>
|
|
|
|
@{
|
|
string cellColourClass = String.Empty;
|
|
|
|
if (Model.Status == "Missing")
|
|
{
|
|
cellColourClass = "episodeMissing";
|
|
}
|
|
|
|
if (Model.Ignored)
|
|
{
|
|
cellColourClass = "episodeIgnored";
|
|
}
|
|
}
|
|
|
|
@*Commands Column*@
|
|
<td class="@cellColourClass">
|
|
<img src='../../Content/Images/@(Model.Ignored ? "ignored" : "notIgnored").png' class='ignoreEpisode ignoreEpisode_@(Model.SeasonNumber)@(Model.Ignored ? " ignored" : " ") gridAction' id='@Model.EpisodeId' title='Click to toggle episode ignore status' />
|
|
@Ajax.ImageActionLink("../../Content/Images/Search.png", new { Alt = "Search", Title = "Search for episode", @class = "gridAction" }, "Search", "Episode", new { episodeId = Model.EpisodeId }, null, null)
|
|
<img src='../../Content/Images/@(Model.Status).png' alt='@Model.Status' title='@Model.Status' class='gridImage status-@Model.Status statusImage' />
|
|
</td>
|
|
</tr>
|
|
<tr class="detail-row@(ViewData["AltRow"] == null || !(bool)ViewData["AltRow"] ? "" : " alt-row")">
|
|
<td colspan="5">
|
|
@Model.Overview <br />
|
|
<b>@Model.Path</b>
|
|
</td>
|
|
</tr> |