2019-10-25 07:18:57 +00:00
|
|
|
{% from 'include/input_macros.html' import input %}
|
2023-03-04 07:42:26 +00:00
|
|
|
{% import 'languages/'+lang|default('en')+'.html' as lang %}
|
2023-04-02 16:58:55 +00:00
|
|
|
<form action="" method="post" class="left-space">
|
|
|
|
<div>
|
2023-03-04 07:42:26 +00:00
|
|
|
<h4>{{ lang.phrases.comparing_config }}</h4>
|
2018-07-16 04:52:43 +00:00
|
|
|
<p>
|
|
|
|
<select autofocus required name="left" id="left">
|
2023-03-04 07:42:26 +00:00
|
|
|
<option disabled selected>{{ lang.phrases.select_older_config }}</option>
|
2018-07-16 04:52:43 +00:00
|
|
|
{% for file in return_files %}
|
2023-09-17 09:42:39 +00:00
|
|
|
<option value="{{ file }}">{{ file.split('-', maxsplit=1)[1] }}</option>
|
2018-07-16 04:52:43 +00:00
|
|
|
{% endfor %}
|
|
|
|
</select>
|
|
|
|
|
|
|
|
<select autofocus required name="right" id="right">
|
2023-03-04 07:42:26 +00:00
|
|
|
<option disabled selected>{{ lang.phrases.select_newer_config }}</option>
|
2018-09-26 15:10:35 +00:00
|
|
|
{% for file in return_files %}
|
|
|
|
<option value="{{ file }}">{{ file.split('-', maxsplit=1)[1] }}</option>
|
2018-07-16 04:52:43 +00:00
|
|
|
{% endfor %}
|
|
|
|
</select>
|
2019-10-31 19:51:43 +00:00
|
|
|
{{ input('serv', type='hidden', value=serv) }}
|
2023-03-04 07:42:26 +00:00
|
|
|
<a class="ui-button ui-widget ui-corner-all" id="show" title="{{ lang.words.compare|title() }}" onclick="showCompare()">{{ lang.words.compare|title() }}</a>
|
2018-07-16 04:52:43 +00:00
|
|
|
</p>
|
2021-04-17 17:38:08 +00:00
|
|
|
</div>
|
2023-03-04 07:42:26 +00:00
|
|
|
</form>
|