JobProvider is now wired working Job view ui is updatedpull/3113/head
parent
6f73260ab7
commit
fa1b287d58
@ -0,0 +1,9 @@
|
|||||||
|
@model IEnumerable<NzbDrone.Core.Repository.JobSetting>
|
||||||
|
@section TitleContent{
|
||||||
|
Jobs
|
||||||
|
}
|
||||||
|
@section MainContent{
|
||||||
|
@{Html.Telerik().Grid(Model).Name("Grid")
|
||||||
|
.TableHtmlAttributes(new { @class = "Grid" })
|
||||||
|
.Render();}
|
||||||
|
}
|
@ -1,59 +0,0 @@
|
|||||||
@model IEnumerable<NzbDrone.Core.Repository.JobSetting>
|
|
||||||
@{
|
|
||||||
Layout = null;
|
|
||||||
}
|
|
||||||
<!DOCTYPE html>
|
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
<title>Timers</title>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<table>
|
|
||||||
<tr>
|
|
||||||
<th>
|
|
||||||
</th>
|
|
||||||
<th>
|
|
||||||
Enable
|
|
||||||
</th>
|
|
||||||
<th>
|
|
||||||
TypeName
|
|
||||||
</th>
|
|
||||||
<th>
|
|
||||||
Name
|
|
||||||
</th>
|
|
||||||
<th>
|
|
||||||
Interval
|
|
||||||
</th>
|
|
||||||
<th>
|
|
||||||
LastExecution
|
|
||||||
</th>
|
|
||||||
<th>
|
|
||||||
Success
|
|
||||||
</th>
|
|
||||||
</tr>
|
|
||||||
@foreach (var item in Model)
|
|
||||||
{
|
|
||||||
<tr>
|
|
||||||
<td>
|
|
||||||
@item.Enable
|
|
||||||
</td>
|
|
||||||
<td>
|
|
||||||
@item.TypeName
|
|
||||||
</td>
|
|
||||||
<td>
|
|
||||||
@item.Name
|
|
||||||
</td>
|
|
||||||
<td>
|
|
||||||
@item.Interval
|
|
||||||
</td>
|
|
||||||
<td>
|
|
||||||
@String.Format("{0:g}", item.LastExecution)
|
|
||||||
</td>
|
|
||||||
<td>
|
|
||||||
@item.Success
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
}
|
|
||||||
</table>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
Loading…
Reference in new issue