mirror of
https://github.com/Sonarr/Sonarr
synced 2024-12-22 07:43:01 +00:00
added series index
This commit is contained in:
parent
9ff60cba63
commit
d2df43c742
1 changed files with 77 additions and 0 deletions
77
NzbDrone.Web/Views/Series/index.aspx
Normal file
77
NzbDrone.Web/Views/Series/index.aspx
Normal file
|
@ -0,0 +1,77 @@
|
|||
<%@ Page Title="" Language="C#" MasterPageFile="~/Views/Shared/Site.Master" Inherits="System.Web.Mvc.ViewPage<IEnumerable<NzbDrone.Core.Repository.Series>>" %>
|
||||
|
||||
<asp:Content ID="Content1" ContentPlaceHolderID="TitleContent" runat="server">
|
||||
SeriesView
|
||||
</asp:Content>
|
||||
|
||||
<asp:Content ID="Content2" ContentPlaceHolderID="MainContent" runat="server">
|
||||
|
||||
<h2>SeriesView</h2>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<th></th>
|
||||
<th>
|
||||
Id
|
||||
</th>
|
||||
<th>
|
||||
SeriesName
|
||||
</th>
|
||||
<th>
|
||||
Status
|
||||
</th>
|
||||
<th>
|
||||
Overview
|
||||
</th>
|
||||
<th>
|
||||
AirTimes
|
||||
</th>
|
||||
<th>
|
||||
Language
|
||||
</th>
|
||||
<th>
|
||||
Path
|
||||
</th>
|
||||
</tr>
|
||||
|
||||
<% foreach (var item in Model) { %>
|
||||
|
||||
<tr>
|
||||
<td>
|
||||
<%: Html.ActionLink("Edit", "Edit", new { /* id=item.PrimaryKey */ }) %> |
|
||||
<%: Html.ActionLink("Details", "Details", new { /* id=item.PrimaryKey */ })%> |
|
||||
<%: Html.ActionLink("Delete", "Delete", new { /* id=item.PrimaryKey */ })%>
|
||||
</td>
|
||||
<td>
|
||||
<%: item.Id %>
|
||||
</td>
|
||||
<td>
|
||||
<%: item.SeriesName %>
|
||||
</td>
|
||||
<td>
|
||||
<%: item.Status %>
|
||||
</td>
|
||||
<td>
|
||||
<%: item.Overview %>
|
||||
</td>
|
||||
<td>
|
||||
<%: item.AirTimes %>
|
||||
</td>
|
||||
<td>
|
||||
<%: item.Language %>
|
||||
</td>
|
||||
<td>
|
||||
<%: item.Path %>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<% } %>
|
||||
|
||||
</table>
|
||||
|
||||
<p>
|
||||
<%: Html.ActionLink("Create New", "Create") %>
|
||||
</p>
|
||||
|
||||
</asp:Content>
|
||||
|
Loading…
Reference in a new issue