Small fixes for the WDT

This commit is contained in:
Florin Patan 2012-04-22 14:17:46 +03:00
parent 5690430587
commit e1cf54c24b
2 changed files with 2 additions and 1 deletions

View File

@ -40,7 +40,7 @@
<form id="priority-form" action="" method="get" style="display: inline">
<input type="hidden" name="panel" value="logger" />
<label for="priority">Priority</label>
<select name="priority" onchange="document.getElementById('priority-form').submit(); ">
<select id="priority" name="priority" onchange="document.getElementById('priority-form').submit(); ">
{% for value, text in { 100: 'DEBUG', 200: 'INFO', 300: 'WARNING', 400: 'ERROR', 500: 'CRITICAL', 550: 'ALERT' } %}
<option value="{{ value }}"{{ value == priority ? ' selected' : '' }}>{{ text }}</option>
{% endfor %}

View File

@ -41,3 +41,4 @@
<em><small>Note: The above matching is based on the configuration for the current router which might differ from
the configuration used while routing this request.</small></em>
</li>
</ul>