{% extends "./layout/default" %} {% block breadcrumbs %} {{ Breadcrumbs.renderIfExists(Route.getCurrentRoute.getName, job) }} {% endblock %} {% block content %}

{{ trans('csv.import_configure_title') }}

{{ trans('csv.import_configure_intro') }}

{{ trans('csv.import_configure_form') }}

{{ ExpandedForm.checkbox('has_headers',1,job.configuration['has-headers'],{helpText: trans('csv.header_help')}) }} {{ ExpandedForm.text('date_format',job.configuration['date-format'],{helpText: trans('csv.date_help', {dateExample: phpdate('Ymd')}) }) }} {{ ExpandedForm.select('csv_delimiter', data.delimiters, job.configuration['delimiter'], {helpText: trans('csv.delimiter_help') } ) }} {{ ExpandedForm.select('csv_import_account', data.accounts, job.configuration['import-account'], {helpText: trans('csv.import_account_help')} ) }} {% for type, specific in data.specifics %}
{% endfor %} {% if not data.is_upload_possible %}
 
{{ data.upload_path }}

{{ trans('csv.upload_not_writeable') }}

{% endif %}
{% if data.is_upload_possible %}
{% endif %}
{% endblock %}