mirror of
https://github.com/morpheus65535/bazarr
synced 2024-12-25 17:17:12 +00:00
WIP
This commit is contained in:
parent
83abf21687
commit
988e88211b
1 changed files with 35 additions and 6 deletions
|
@ -2,6 +2,17 @@
|
||||||
|
|
||||||
{% block title %}Logs - Bazarr{% endblock %}
|
{% block title %}Logs - Bazarr{% endblock %}
|
||||||
|
|
||||||
|
{% block head %}
|
||||||
|
<style>
|
||||||
|
.dropdown-item-checked::before {
|
||||||
|
position: absolute;
|
||||||
|
left: .1rem;
|
||||||
|
content: '✓';
|
||||||
|
font-weight: 900;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
{% endblock head %}
|
||||||
|
|
||||||
{% block bcleft %}
|
{% block bcleft %}
|
||||||
<div class="">
|
<div class="">
|
||||||
<button class="btn btn-outline" id="refresh_button">
|
<button class="btn btn-outline" id="refresh_button">
|
||||||
|
@ -27,11 +38,12 @@
|
||||||
<div class="align-bottom text-themecolor small text-center">Filter</div>
|
<div class="align-bottom text-themecolor small text-center">Filter</div>
|
||||||
</button>
|
</button>
|
||||||
<div id="filter_menu" class="dropdown-menu dropdown-menu-right">
|
<div id="filter_menu" class="dropdown-menu dropdown-menu-right">
|
||||||
<a href="" class="dropdown-item"><i class="far fa-circle" style="color: black;"></i> All</a>
|
<a href="" class="dropdown-item filter_log dropdown-item-checked" data-level="ALL"><i class="far fa-circle" style="color: black;"></i> All</a>
|
||||||
<a href="" class="dropdown-item"><i class="fas fa-info-circle" style="color: #1e90ff;"></i> Info</a>
|
<div class="dropdown-divider"></div>
|
||||||
<a href="" class="dropdown-item"><i class="fas fa-exclamation-circle" style="color: yellow;"></i> Warning</a>
|
<a href="" class="dropdown-item filter_log" data-level="INFO"><i class="fas fa-info-circle" style="color: #1e90ff;"></i> Info</a>
|
||||||
<a href="" class="dropdown-item"><i class="fas fa-bug" style="color: red;"></i> Error</a>
|
<a href="" class="dropdown-item filter_log" data-level="WARNING"><i class="fas fa-exclamation-circle" style="color: yellow;"></i> Warning</a>
|
||||||
<a href="" class="dropdown-item"><i class="fas fa-bug" style="color: black;"></i> Debug</a>
|
<a href="" class="dropdown-item filter_log" data-level="ERROR"><i class="fas fa-bug" style="color: red;"></i> Error</a>
|
||||||
|
<a href="" class="dropdown-item filter_log" data-level="DEBUG"><i class="fas fa-bug" style="color: black;"></i> Debug</a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -141,11 +153,28 @@
|
||||||
$('#empty_button').on('click', function() {
|
$('#empty_button').on('click', function() {
|
||||||
$.ajax({
|
$.ajax({
|
||||||
url: "{{ url_for('emptylog') }}"
|
url: "{{ url_for('emptylog') }}"
|
||||||
}).done(function (data) {
|
}).done(function () {
|
||||||
table.ajax.reload();
|
table.ajax.reload();
|
||||||
table.columns.adjust().draw(false);
|
table.columns.adjust().draw(false);
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
|
$('.filter_log').on( 'click', function (e) {
|
||||||
|
e.preventDefault();
|
||||||
|
$('.filter_log').removeClass('dropdown-item-checked');
|
||||||
|
$(this).addClass('dropdown-item-checked');
|
||||||
|
if ($(this).data('level') === 'INFO') {
|
||||||
|
table.column(0).search('INFO|WARNING|ERROR|DEBUG', true, false).draw();
|
||||||
|
} else if ($(this).data('level') === 'WARNING') {
|
||||||
|
table.column(0).search('WARNING|ERROR|DEBUG', true, false).draw();
|
||||||
|
} else if ($(this).data('level') === 'ERROR') {
|
||||||
|
table.column(0).search('ERROR|DEBUG', true, false).draw();
|
||||||
|
} else if ($(this).data('level') === 'DEBUG') {
|
||||||
|
table.column(0).search('DEBUG', true, false).draw();
|
||||||
|
} else if ($(this).data('level') === 'ALL') {
|
||||||
|
table.column(0).search('').draw();
|
||||||
|
}
|
||||||
|
});
|
||||||
})
|
})
|
||||||
</script>
|
</script>
|
||||||
{% endblock tail %}
|
{% endblock tail %}
|
||||||
|
|
Loading…
Reference in a new issue