mirror of
https://github.com/rembo10/headphones.git
synced 2026-05-05 03:09:43 +01:00
Added log, history templates, changed some css, included updatebar, subheadings
This commit is contained in:
@@ -14,7 +14,9 @@
|
||||
%for line in lineList:
|
||||
<%
|
||||
from headphones import helpers
|
||||
timestamp, level, thread, message = helpers.extract_logline(line)
|
||||
out_tuple = helpers.extract_logline(line)
|
||||
if out_tuple:
|
||||
timestamp, level, thread, message = out_tuple
|
||||
%>
|
||||
%if timestamp and level and thread and message:
|
||||
<tr>
|
||||
@@ -29,7 +31,7 @@
|
||||
</table>
|
||||
</%def>
|
||||
|
||||
<%def name="headerIncludes()">
|
||||
<%def name="headIncludes()">
|
||||
<link rel="stylesheet" href="css/data_table.css">
|
||||
</%def>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user