{% extends "BaseAdmin.html" %} {% load i18n %} {% block title %}{{ title }}{% endblock %} {% block content %}

{{ title }}

{% if errormsg %}

{% trans 'Failed to read csv file.' %}
{{ errormsg }}

{% endif %}

{% 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 %} {% for value in row %} {% endfor %} {% endfor %}
{{ value }}
{% endblock %}