used chosen for log filters
This commit is contained in:
parent
f790306990
commit
411e1d05f2
|
@ -59,13 +59,39 @@ xhtmlHeaders(__FILE__, translate('SystemLog') );
|
||||||
</div> <!--header-->
|
</div> <!--header-->
|
||||||
<div id="content">
|
<div id="content">
|
||||||
|
|
||||||
<div id="filters"><?php echo translate('FilterLog') ?> -
|
<div id="filters">
|
||||||
<?php echo translate('Component') ?> <select id="filter[Component]" onchange="filterLog(this)"><option value="">-----</option></select>
|
|
||||||
<?php echo translate('Server') ?> <select id="filter[ServerId]" onchange="filterLog(this)"><option value="">-----</option></select>
|
<table cellpadding="5" class="table-condensed">
|
||||||
<?php echo translate('Pid') ?> <select id="filter[Pid]" onchange="filterLog(this)"><option value="">-----</option></select>
|
<tr class="row">
|
||||||
<?php echo translate('Level') ?> <select id="filter[Level]" onchange="filterLog(this)"><option value="">---</option></select>
|
<td class="col">
|
||||||
<?php echo translate('File') ?> <select id="filter[File]" onchange="filterLog(this)"><option value="">------</option></select>
|
<?php echo translate('Component') ?>
|
||||||
<?php echo translate('Line') ?> <select id="filter[Line]" onchange="filterLog(this)"><option value="">----</option></select>
|
<select class="form-control chosen" id="filter[Component]" onchange="filterLog(this)"><option value="">-----</option></select>
|
||||||
|
</td>
|
||||||
|
<td class="col">
|
||||||
|
<?php echo translate('Server') ?>
|
||||||
|
<select class="form-control chosen" id="filter[ServerId]" onchange="filterLog(this)"><option value="">-----</option></select>
|
||||||
|
</td>
|
||||||
|
<td class="col">
|
||||||
|
<?php echo translate('Pid') ?>
|
||||||
|
<select class="form-control chosen" id="filter[Pid]" onchange="filterLog(this)"><option value="">-----</option></select>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr class="row">
|
||||||
|
<td class="col">
|
||||||
|
<?php echo translate('Level') ?>
|
||||||
|
<select class="form-control chosen" id="filter[Level]" onchange="filterLog(this)"><option value="">---</option></select>
|
||||||
|
</td>
|
||||||
|
<td class="col">
|
||||||
|
<?php echo translate('File') ?>
|
||||||
|
<select class="form-control chosen" id="filter[File]" onchange="filterLog(this)"><option value="">------</option></select>
|
||||||
|
</td>
|
||||||
|
<td class="col">
|
||||||
|
<?php echo translate('Line') ?>
|
||||||
|
<select class="form-control chosen" id="filter[Line]" onchange="filterLog(this)"><option value="">----</option></select>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
|
||||||
|
</table>
|
||||||
<input type="reset" value="<?php echo translate('Reset') ?>" onclick="resetLog()"/>
|
<input type="reset" value="<?php echo translate('Reset') ?>" onclick="resetLog()"/>
|
||||||
</div>
|
</div>
|
||||||
<form name="logForm" method="post" action="<?php echo $_SERVER['PHP_SELF'] ?>">
|
<form name="logForm" method="post" action="<?php echo $_SERVER['PHP_SELF'] ?>">
|
||||||
|
|
Loading…
Reference in New Issue