{%- extends 'base_templates/page_base_half.html' %} {%- block content %} {%- from "base_templates/form_macros.html" import render_field, render_file_field, render_submit_field with context %} {%- if fields %}

{{ word('Here is the start of a question you can use to assemble the %s template.' % (file_type.upper(),)) }}

{{ fields }}
{%- endif %} {%- if word_box %}

{{ word("Here is the start of a YAML file you can import with a 'words' directive in your Configuration.") }}

{{ word("Copy from here and paste into a YAML file, e.g., in the Sources folder of the Playground or the sources folder of a package.") }}

{% if uses_null %}

{{ word("Replace each instance of Null with a quoted translation.") }}

{%- endif %} {%- endif %}
{{ form.hidden_tag() }} {{ render_file_field(form.pdfdocxfile, tabindex=80) }}
{{ render_submit_field(form.scan, tabindex=100) }}
{{ form.hidden_tag() }}
{{ render_field(form.language, tabindex=110, placeholder=language_placeholder) }}
{{ render_submit_field(form.language_submit, tabindex=120) }}
{{ form.hidden_tag() }}
{{ render_field(form.officeaddin_version, tabindex=115) }} {{ render_submit_field(form.officeaddin_submit, tabindex=120) }}
{% endblock %}