Sonarr/NzbDrone.Web/Views/Timers/index.cshtml

60 lines
1.2 KiB
Plaintext

@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>