You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
1.0 KiB
17 lines
1.0 KiB
13 years ago
|
@using NzbDrone.Web.Helpers
|
||
|
@model NzbDrone.Web.Models.EpisodeModel
|
||
|
|
||
|
<tr class="@Model.EpisodeId">
|
||
|
<td>@Model.EpisodeNumber</td>
|
||
|
<td>@Model.Title</td>
|
||
|
<td>@Model.AirDate</td>
|
||
|
<td>@Model.Quality</td>
|
||
|
|
||
|
@*Commands Column*@
|
||
|
<td>
|
||
|
<img src='../../Content/Images/@(Model.Ignored ? "ignored" : "notIgnored").png' class='ignoreEpisode ignoreEpisode_" + @Model.SeasonNumber + " ignored' id='@Model.EpisodeId' title='Click to toggle episode ignore status' />
|
||
|
<img src='../../Content/Images/@(Model.Status).png' alt='@Model.Status' title='@Model.Status' class='statusImage status-@Model.Status' />
|
||
|
@Ajax.ImageActionLink("../../Content/Images/Search.png", new { Alt = "Search", Title = "Search for episode", @class = "searchImage" }, "Search", "Episode", new { EpisodeId = Model.EpisodeId }, null, null)
|
||
|
@Ajax.ImageActionLink("../../Content/Images/Rename.png", new { Alt = "Rename", Title = "Rename episode", @class = "renameImage" }, "Rename", "Episode", new { EpisodeFileId = Model.EpisodeFileId }, null, null)
|
||
|
</td>
|
||
|
</tr>
|