{% extends "admin/base.html" %} {% block title %}Update Prices {{ super() }}{% endblock %} {% block extrahead %} {% endblock %} {% block content %} {% if result %}

{% for row in result %}{{ row }}{% if not loop.last %}
{% endif %}{% endfor %}

{% endif %}

This form accepts a tab delimited CSV file containing prices and currencies. Columns can be in any order. Do not include any currency symbols. Format:

      USD   CAD   BRL
      0.99  1.99  2.99
      1.99  2.99  3.99
    

{{ csrf() }} {{ form }}
{% endblock %}