Commit e064a3ec authored by Ozzie Isaacs's avatar Ozzie Isaacs

Removed unnecessary spaces in book convert texts

parent cd1fe6dd
...@@ -27,16 +27,16 @@ ...@@ -27,16 +27,16 @@
<div class="text-left"> <div class="text-left">
<label class="control-label" for="book_format_from">{{_('Convert from:')}}</label> <label class="control-label" for="book_format_from">{{_('Convert from:')}}</label>
<select class="form-control" name="book_format_from" id="book_format_from"> <select class="form-control" name="book_format_from" id="book_format_from">
<option disabled selected value> -- {{_('select an option')}} -- </option> <option disabled selected value>-- {{_('select an option')}} --</option>
{% for format in source_formats %} {% for format in source_formats %}
<option>{{format|upper}} </option> <option>{{format|upper}}</option>
{% endfor %} {% endfor %}
</select> </select>
<label class="control-label" for="book_format_to">{{_('Convert to:')}}</label> <label class="control-label" for="book_format_to">{{_('Convert to:')}}</label>
<select class="form-control" name="book_format_to" id="book_format_to"> <select class="form-control" name="book_format_to" id="book_format_to">
<option disabled selected value> -- {{_('select an option')}} -- </option> <option disabled selected value>-- {{_('select an option')}} --</option>
{% for format in conversion_formats %} {% for format in conversion_formats %}
<option>{{format|upper}} </option> <option>{{format|upper}}</option>
{% endfor %} {% endfor %}
</select> </select>
</div> </div>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment