Skip to content

Commit

Permalink
Fixing keys on webui
Browse files Browse the repository at this point in the history
  • Loading branch information
puentesarrin committed Mar 9, 2013
1 parent 84d44c1 commit be43310
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions tools/webui/templates/index.html
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
$def with (logs)

Filters:
Filters:
[<a href="/">all</a>]
[<a href="/info">info</a>]
[<a href="/debug">debug</a>]
[<a href="/warning">warning</a>]
[<a href="/error">error</a>]
[<a href="/critical">critical</a>]
[<a href="/info">info</a>]
[<a href="/debug">debug</a>]
[<a href="/warning">warning</a>]
[<a href="/error">error</a>]
[<a href="/critical">critical</a>]

<br /><br />

Expand All @@ -28,13 +28,13 @@
</tr>
$for record in logs:
<tr>
<td>$record['level']</td>
<td>$record['levelname']</td>
<td>$record['name']</td>
<td>$record['host']</td>
<td>$record['line_no']</td>
<td>$record['funcname']</td>
<td>$record['file']</td>
<td>$record['user']</td>
<td>$record['lineno']</td>
<td>$record['funcName']</td>
<td>$record['filename']</td>
<td>$record['username']</td>
<td>$record['msg']</td>
<td>$record['time']</td>
</tr>
Expand Down

0 comments on commit be43310

Please sign in to comment.