mirror of
https://github.com/morpheus65535/bazarr.git
synced 2025-02-12 17:03:59 +08:00
Logs viewer bug
This commit is contained in:
parent
c7c1ae53c0
commit
91f06930d8
1 changed files with 7 additions and 1 deletions
|
@ -32,7 +32,13 @@
|
|||
%for log in logs:
|
||||
%line = []
|
||||
%line = log.split('|')
|
||||
<tr class='log' data-message='{{line[2]}}' data-exception="{{line[3]}}">
|
||||
<tr class='log' data-message='{{line[2]}}' data-exception="\\
|
||||
%try:
|
||||
{{line[3]}}\\
|
||||
%except:
|
||||
\\
|
||||
%end
|
||||
">
|
||||
<td class="collapsing"><i class="\\
|
||||
%if line[1] == 'INFO':
|
||||
blue info circle \\
|
||||
|
|
Loading…
Reference in a new issue