mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 00:12:30 +01:00
57 lines
2.0 KiB
Plaintext
57 lines
2.0 KiB
Plaintext
@model IEnumerable<NzbDrone.Core.Instrumentation.Log>
|
|
|
|
@section Scripts{
|
|
<script type="text/javascript">
|
|
function onRowDataBound(e) {
|
|
|
|
e.row.style.boarder = "";
|
|
|
|
if (e.dataItem.Level == 3) {
|
|
e.row.style.backgroundColor = "#FFD700";
|
|
}
|
|
else if (e.dataItem.Level == 4) {
|
|
e.row.style.backgroundColor = "#FF7500";
|
|
}
|
|
else if (e.dataItem.Level == 5) {
|
|
e.row.style.backgroundColor = "black";
|
|
e.row.style.color = "red";
|
|
}
|
|
//e.row.style.color = 'blue';
|
|
}
|
|
</script>
|
|
}
|
|
|
|
@section TitleContent{
|
|
Logs
|
|
}
|
|
|
|
@section ActionMenu{
|
|
@{Html.Telerik().Menu().Name("logMenu").Items(items => items.Add().Text("Clear Logs").Action("Clear", "Log"))
|
|
.Render();}
|
|
}
|
|
|
|
@section MainContent{
|
|
@{Html.Telerik().Grid(Model).Name("logsGrid")
|
|
.TableHtmlAttributes(new { @class = "Grid" })
|
|
.Columns(columns =>
|
|
{
|
|
columns.Bound(c => c.Time).Title("Time").Width(190);
|
|
columns.Bound(c => c.Level).Title("Level").Width(0);
|
|
columns.Bound(c => c.Message);
|
|
})
|
|
.DetailView(detailView => detailView.ClientTemplate(
|
|
"<div><#= Logger #></div>" +
|
|
"<div><#= ExceptionType #></div>" +
|
|
"<div><#= ExceptionMessage #></div>" +
|
|
"<div class='stackframe'><#= ExceptionString #></div>"
|
|
)).DataBinding(data => data.Ajax().Select("_AjaxBinding", "Log"))
|
|
.Sortable(rows => rows.OrderBy(epSort => epSort.Add(c => c.Time).Descending()).Enabled(true))
|
|
.Pageable(
|
|
c =>
|
|
c.PageSize(50).Position(GridPagerPosition.Bottom).Style(GridPagerStyles.NextPrevious))
|
|
.Filterable()
|
|
.ClientEvents(c => c.OnRowDataBound("onRowDataBound"))
|
|
.Render();}
|
|
}
|
|
|