event log layout

This commit is contained in:
Shish 2012-03-30 17:18:01 +01:00
parent 72b7586c10
commit 7bf273a1ee

View file

@ -20,7 +20,7 @@ class LogDatabaseTheme extends Themelet {
</style> </style>
<table class='zebra'> <table class='zebra'>
<thead> <thead>
<tr><th>Time</th><th>Module</th><th>User</th><th>Message</th></tr> <tr><th>Time</th><th>Module</th><th>User</th><th colspan='2'>Message</th></tr>
<form action='".make_link("log/view")."' method='GET'> <form action='".make_link("log/view")."' method='GET'>
<tr class='sizedinputs'> <tr class='sizedinputs'>
<td><input type='text' name='time' value='".$this->heie("time")."'></td> <td><input type='text' name='time' value='".$this->heie("time")."'></td>
@ -34,8 +34,8 @@ class LogDatabaseTheme extends Themelet {
<option value='".SCORE_LOG_ERROR."'>Error</option> <option value='".SCORE_LOG_ERROR."'>Error</option>
<option value='".SCORE_LOG_CRITICAL."'>Critical</option> <option value='".SCORE_LOG_CRITICAL."'>Critical</option>
</select> </select>
<input type='submit' value='Search' style='width: 20%'>
</td> </td>
<td><input type='submit' value='Search'></td>
</tr> </tr>
</form> </form>
</thead> </thead>
@ -56,7 +56,7 @@ class LogDatabaseTheme extends Themelet {
"<a href='".make_link("user/".url_escape($event['username']))."'>".html_escape($event['username'])."</a>". "<a href='".make_link("user/".url_escape($event['username']))."'>".html_escape($event['username'])."</a>".
"</span></td>"; "</span></td>";
} }
$table .= "<td>".$this->scan_entities(html_escape($event['message']))."</td>"; $table .= "<td colspan='2'>".$this->scan_entities(html_escape($event['message']))."</td>";
$table .= "</tr>\n"; $table .= "</tr>\n";
} }
$table .= "</tbody></table>"; $table .= "</tbody></table>";