You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
haproxy-wi/app/templates/logs.html

65 lines
1.8 KiB

{% extends "base.html" %}
{% block content %}
{% if onclick == 'showApacheLog()' %}
<script src="/inc/users.js"></script>
{% endif %}
<table class="overview">
<tr class="overviewHead">
<td class="padding10 first-collumn">
{% if onclick == 'showApacheLog()' %}
Log
{% else %}
Server
{% endif %}
</td>
<td>Number rows</td>
<td class="padding10">Ex for grep</td>
<td> </td>
</tr>
<tr>
<td class="padding10 first-collumn">
<form action="logs.py" method="get">
<select autofocus required name="serv" id="serv">
<option disabled selected>Choose server</option>
{% if onclick == 'showApacheLog()' %}
{% for select in selects %}
{% if select.2 == serv %}
<option value="{{ select.0 }}" selected>{{ select.1 }}</option>
{% else %}
<option value="{{ select.0 }}">{{ select.1 }}</option>
{% endif %}
{% endfor %}
{% else %}
{% for select in selects %}
{% if select.2 == serv %}
<option value="{{ select.2 }}" selected>{{ select.1 }}</option>
{% else %}
<option value="{{ select.2 }}">{{ select.1 }}</option>
{% endif %}
{% endfor %}
{% endif %}
</select>
</td>
<td>
<input type="number" name="rows" id="rows" value="{{ rows }}" class="form-control" required>
</td>
<td class="padding10 first-collumn">
<input type="text" name="grep" id="grep" class="form-control" value="{{ grep }}" >
</td>
<td class="padding10 first-collumn">
<a class="ui-button ui-widget ui-corner-all" id="show" title="Show logs" onclick="{{ onclick }}">Show</a>
</form>
</td>
</tr>
</table>
<div id="ajax">
</div>
<script>
{% if onclick == 'showApacheLog()' %}
window.onload = showApacheLog()
{% else %}
window.onload = showLog()
{% endif %}
</script>
{% endblock %}