Lidarr/NzbDrone.Web/Views/System/Jobs.cshtml

105 lines
3.6 KiB
Plaintext
Raw Normal View History

2011-12-19 05:08:36 +00:00
@using NzbDrone.Web.Models
@using NzbDrone.Web.Helpers
2012-02-10 06:17:53 +00:00
@model string
@{ViewBag.Title = "Jobs";}
2011-12-01 05:25:01 +00:00
2012-02-10 06:17:53 +00:00
@section HeaderContent
{
@Html.IncludeCss("Grid.css")
}
<div class="grid-container">
<table id="jobGrid" class="dataTablesGrid hidden-grid no-details">
<thead>
<tr>
<th>ID</th>
<th>Enable</th>
<th>Type Name</th>
<th>Name</th>
<th>Interval</th>
<th>Last Execution</th>
<th>Success</th>
@*Commands Column*@
<th>Actions</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
<h1>Items currently in queue</h1>
<div class="grid-container">
<table id="queueGrid" class="dataTablesGrid hidden-grid no-details">
<thead>
<tr>
<th>Type</th>
<th>Target</th>
<th>Secondary</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
@section Scripts{
<script type="text/javascript">
$(document).ready(function() {
$('#jobGrid').removeClass('hidden-grid');
oTable = $('#jobGrid').dataTable({
"bShowAll": false,
"aaData": @Html.Raw(Model),
"bPaginate": false,
"bLengthChange": false,
"bFilter": false,
"bSort": false,
"bInfo": false,
"bAutoWidth": false,
"iDisplayLength": 20,
"sPaginationType": "four_button",
"aoColumns": [
{ sWidth: '30px', "mDataProp": "Id"}, //Id
{ sWidth: '70px', "mDataProp": "Enable" }, //Enable
{ sWidth: '80px', "mDataProp": "TypeName" }, //TypeName
{ sWidth: 'auto', "mDataProp": "Name" }, //Name
{ sWidth: '70px', "mDataProp": "Interval" }, //Interval
{ sWidth: '150px', "mDataProp": "LastExecution" }, //LastExecution
{ sWidth: '80px', "mDataProp": "Success" }, //Success
{ sWidth: '40px', "mDataProp": "Actions", "bSortable": false, "fnRender": function (row) {
if (!row.aData["Enable"])
return "";
2012-02-11 23:16:08 +00:00
return createImageAjaxLink('/System/RunJob?typeName=' + row.aData["TypeName"], '../../Content/Images/Gear.png', 'Run', 'Run Job', 'gridImage');
2012-02-10 06:17:53 +00:00
//return createImageAjaxLink('/History/Delete?historyId=' + row.aData["HistoryId"], '../../Content/Images/X.png', 'Delete', 'Delete from History', 'searchImage');
}
} //Actions
],
"aaSorting": [[4, 'asc']]
});
$('#queueGrid').removeClass('hidden-grid');
oTable = $('#queueGrid').dataTable({
"bShowAll": false,
"aaData": @ViewData["Queue"],
"bPaginate": false,
"bLengthChange": false,
"bFilter": false,
"bSort": false,
"bInfo": false,
"bAutoWidth": false,
"iDisplayLength": 20,
"sPaginationType": "four_button",
"aoColumns": [
{ sWidth: 'auto', "mDataProp": "Type"}, //Type
{ sWidth: '100px', "mDataProp": "Target" }, //Target
{ sWidth: '100px', "mDataProp": "SecondaryTarget" }, //SecondaryTarget
]
});
});
</script>
2012-02-10 06:26:48 +00:00
}