{% extends "BaseAdmin.html" %} {% load i18n %} {% block title %}{% trans 'Import CSV' %}{% endblock %} {% block content %}

{{ submitMessage }}

{% blocktrans %} Following is your CSV entries. This shows first {{ previewNum }} entries only. {% endblocktrans %}

{% blocktrans %} If your CSV entries have no problem, click {{ submitMessage }}. {% endblocktrans %}


{% for row in previewdata %} {% if forloop.first %} {% else %} {% endif %} {% for value in row %} {% endfor %} {% endfor %}
{{ value }}

{% endblock %}