options_format.twig 920 B

123456789101112131415161718192021222324
  1. <div class="exportoptions" id="format_specific_opts">
  2. <h3>{% trans 'Format-specific options:' %}</h3>
  3. <p class="no_js_msg" id="scroll_to_options_msg">
  4. {% trans 'Scroll down to fill in the options for the selected format and ignore the options for other formats.' %}
  5. </p>
  6. {{ options|raw }}
  7. </div>
  8. {% if can_convert_kanji %}
  9. {# Japanese encoding setting #}
  10. <div class="exportoptions" id="kanji_encoding">
  11. <h3>{% trans 'Encoding Conversion:' %}</h3>
  12. {% include 'encoding/kanji_encoding_form.twig' %}
  13. </div>
  14. {% endif %}
  15. <div class="exportoptions" id="submit">
  16. <input type="submit" value="{% trans 'Go' %}" id="buttonGo"
  17. {#- If the time limit set is zero, then time out won't occur so no need
  18. to check for time out. -#}
  19. {%- if exec_time_limit > 0 %}
  20. onclick="check_time_out({{ exec_time_limit }})"
  21. {%- endif %}>
  22. </div>