mirror of
https://github.com/morpheus65535/bazarr.git
synced 2025-02-13 01:14:38 +08:00
Logs viewer bug
This commit is contained in:
parent
ac30452c77
commit
4a449a285c
1 changed files with 12 additions and 8 deletions
|
@ -46,14 +46,18 @@
|
||||||
%end
|
%end
|
||||||
">
|
">
|
||||||
<td class="collapsing"><i class="\\
|
<td class="collapsing"><i class="\\
|
||||||
%if line[1] == 'INFO':
|
%try:
|
||||||
blue info circle \\
|
%if line[1] == 'INFO':
|
||||||
%elif line[1] == 'WARNING':
|
blue info circle icon \\
|
||||||
yellow warning circle \\
|
%elif line[1] == 'WARNING':
|
||||||
%elif line[1] == 'ERROR':
|
yellow warning circle icon \\
|
||||||
red bug \\
|
%elif line[1] == 'ERROR':
|
||||||
%end
|
red bug icon \\
|
||||||
icon"></i></td>
|
%end
|
||||||
|
%except:
|
||||||
|
%pass
|
||||||
|
%end
|
||||||
|
"></i></td>
|
||||||
<td>\\
|
<td>\\
|
||||||
%try:
|
%try:
|
||||||
{{line[2]}}\\
|
{{line[2]}}\\
|
||||||
|
|
Loading…
Reference in a new issue