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

{% trans "Import CSV" %}

{% endblock %} {% block content %} {% if required_fields %}

{% blocktrans count fields=required_fields|length with labels=required_fields|join:", " %} {{ labels }} is required but cannot be filled from CSV. {% plural %} {{ labels }} are required but cannot be filled from CSV. {% endblocktrans %}

{% else %}

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

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

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