{% extends "wcs/backoffice/base.html" %} {% load i18n %} {% block appbar %}

{% trans "Import File" %}

{% endblock %} {% block content %} {% if impossible_csv_fields %}

{% trans "You can add data to this card by uploading a JSON file." %}

{% else %}

{% trans "You can add data to this card by uploading a CSV or JSON file." %}

{% endif %} {% if not impossible_csv_fields %}

{% trans "Download sample CSV file for this card" %}

{% else %}

{% blocktrans trimmed count fields=impossible_csv_fields|length with labels=impossible_csv_fields|join:", " %} {{ labels }} is required but cannot be filled from CSV. {% plural %} {{ labels }} are required but cannot be filled from CSV. {% endblocktrans %} {% trans "Only JSON files can be imported." %}

{% endif %} {{ html_form.render|safe }} {% endblock %}