2011-12-19 05:08:36 +00:00
|
|
|
@using NzbDrone.Web.Models
|
2011-12-15 08:25:16 +00:00
|
|
|
@using NzbDrone.Web.Helpers
|
2012-02-10 06:17:53 +00:00
|
|
|
@model string
|
2011-12-10 05:05:17 +00:00
|
|
|
@{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 "";
|
|
|
|
|
|
|
|
return createImageAjaxLink('/System/RunJob?typeName=' + row.aData["TypeName"], '../../Content/Images/Gear.png', 'Run', 'Run Job', 'searchImage');
|
|
|
|
//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
|
|
|
}
|