1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-22 17:31:47 +02:00
Radarr/NzbDrone.Web/Views/Log/Index.cshtml

60 lines
2.4 KiB
Plaintext
Raw Normal View History

@model IEnumerable<NzbDrone.Core.Instrumentation.Log>
@section Scripts{
2010-10-24 19:35:58 +02:00
<script type="text/javascript">
function onRowDataBound(e) {
e.row.style.boarder = "";
2011-04-22 07:49:50 +02:00
if (e.dataItem.Level == "Warn") {
2010-10-24 19:35:58 +02:00
e.row.style.backgroundColor = "#FFD700";
}
2011-04-22 07:49:50 +02:00
else if (e.dataItem.Level == "Error") {
2010-10-24 19:35:58 +02:00
e.row.style.backgroundColor = "#FF7500";
}
2011-04-22 07:49:50 +02:00
else if (e.dataItem.Level == "Fatal") {
2010-10-24 19:35:58 +02:00
e.row.style.backgroundColor = "black";
e.row.style.color = "red";
2010-10-24 19:35:58 +02:00
}
//e.row.style.color = 'blue';
}
</script>
}
@section TitleContent{
Logs
}
@section ActionMenu{
<ul class="sub-menu">
<li>@Ajax.ActionLink("Clear Logs", "Clear", "Log", new AjaxOptions{ OnSuccess = "reloadGrid" })</li>
</ul>
}
@section MainContent{
@{Html.Telerik().Grid(Model).Name("logsGrid")
.TableHtmlAttributes(new { @class = "Grid" })
2011-04-10 04:44:01 +02:00
.Columns(columns =>
{
2011-07-04 07:23:38 +02:00
columns.Bound(c => c.Time).Title("Time").Width(0);
columns.Bound(c => c.Level).Title("Level").Width(0);
2011-07-04 07:23:38 +02:00
columns.Bound(c => c.Logger).Title("Source").Width(0);
2011-04-10 04:44:01 +02:00
columns.Bound(c => c.Message);
})
.DetailView(detailView => detailView.ClientTemplate(
2011-07-04 07:23:38 +02:00
"<div>Method: <#= Method #></div>" +
2011-05-21 02:21:31 +02:00
"<div><#= ExceptionType #></div>" +
"<div class='stackframe'><#= Exception #></div>"
)).DataBinding(data => data.Ajax().Select("_AjaxBinding", "Log"))
//.Sortable(rows => rows.OrderBy(epSort => epSort.Add(c => c.Time).Descending()).Enabled(true))
2011-05-21 02:21:31 +02:00
.Pageable(c => c.PageSize(50).Position(GridPagerPosition.Bottom).Style(GridPagerStyles.NextPrevious))
.EnableCustomBinding(true)
//.Filterable()
2011-04-10 04:44:01 +02:00
.ClientEvents(c => c.OnRowDataBound("onRowDataBound"))
.Render();}
}
<script type="text/javascript">
function reloadGrid() {
var grid = $('#logsGrid').data('tGrid');
grid.rebind();
}
</script>