Index: command_wrapper/viewer.html |
=================================================================== |
--- command_wrapper/viewer.html (revision 54349) |
+++ command_wrapper/viewer.html (working copy) |
@@ -20,6 +20,8 @@ |
padding:0.25em 0.5em; |
text-align:left; |
vertical-align:top; |
+ border-style: solid; |
+ border-width: 1px; |
} |
</style> |
</head> |
@@ -27,6 +29,7 @@ |
<h1>command_wrapper.py log</h1> |
<table> |
<tr> |
+ <th align="left">row</th> |
<th align="left">command_id</th> |
<th align="left">remote_addr</th> |
<th align="left">attempt</th> |
@@ -44,9 +47,11 @@ |
<th align="left">uname_version</th> |
<th align="left">uname_machine</th> |
<th align="left">uname_processor</th> |
+ <th align="left">response</th> |
</tr> |
{% for item in items %} |
<tr> |
+ <td>{{ forloop.counter }}</td> |
<td>{{ item.command_id|escape }}</td> |
<td>{{ item.remote_addr|escape }}</td> |
<td>{{ item.attempt|escape }}</td> |
@@ -72,6 +77,7 @@ |
<td>{{ item.uname_version|escape }}</td> |
<td>{{ item.uname_machine|escape }}</td> |
<td>{{ item.uname_processor|escape }}</td> |
+ <td>{{ item.response|escape }}</td> |
</tr> |
{% endfor %} |
</table> |