haproxy-wi/app/templates/ajax/show_compare_configs.html

30 lines
1.2 KiB
HTML

{% from 'include/input_macros.html' import input %}
{% import 'languages/'+lang|default('en')+'.html' as lang %}
<form action="" method="post">
<div style="text-align: center;margin-top: 20px;">
<h4>{{ lang.phrases.comparing_config }}</h4>
<p>
<select autofocus required name="left" id="left">
<option disabled selected>{{ lang.phrases.select_older_config }}</option>
{% for file in return_files %}
{% if file == left %}
<option value="{{ file }}" selected>{{ file.split('-', maxsplit=1)[1] }}</option>
{% else %}
<option value="{{ file }}">{{ file.split('-', maxsplit=1)[1] }}</option>
{% endif %}
{% endfor %}
</select>
<select autofocus required name="right" id="right">
<option disabled selected>{{ lang.phrases.select_newer_config }}</option>
{% for file in return_files %}
<option value="{{ file }}">{{ file.split('-', maxsplit=1)[1] }}</option>
{% endfor %}
</select>
{{ input('serv', type='hidden', value=serv) }}
{{ input('open', type='hidden', value='open') }}
<a class="ui-button ui-widget ui-corner-all" id="show" title="{{ lang.words.compare|title() }}" onclick="showCompare()">{{ lang.words.compare|title() }}</a>
</p>
</div>
</form>