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.
|
|
|
<form action="diff.py#diff" method="get">
|
|
|
|
<center>
|
|
|
|
<h4>
|
|
|
|
<span style="padding: 20px;">Choose left</span>
|
|
|
|
<span style="padding: 110px;">Choose right</span>
|
|
|
|
</h4>
|
|
|
|
<p>
|
|
|
|
<select autofocus required name="left" id="left">
|
|
|
|
<option disabled selected>Choose version</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>Choose version</option>
|
|
|
|
{% for file in return_files %}
|
|
|
|
<option value="{{ file }}">{{ file.split('-', maxsplit=1)[1] }}</option>
|
|
|
|
{% endfor %}
|
|
|
|
</select>
|
|
|
|
|
|
|
|
<input type="hidden" value="{{ serv }}" name="serv">
|
|
|
|
<input type="hidden" value="open" name="open">
|
|
|
|
<a class="ui-button ui-widget ui-corner-all" id="show" title="Compare" onclick="showCompare()">Show</a>
|
|
|
|
</p>
|
|
|
|
</center>
|
|
|
|
</form>
|