{% extends "base.html" %} {% load wger_extras %} {% load i18n %} {% block title %}{% trans "Preview imported CSV entries" %}{% endblock %} {% block content %}
{% trans "Date" %} | {% trans "Weight" %} |
---|---|
{{ entry.date|date:"SHORT_DATE_FORMAT" }} | {{ entry.weight }} |
{% blocktrans %}These values could not be converted to a weight log entry. The reasons for this could be anything from an unrecognised date or number format, a problem with the encoding or something else. Please check that there are no obvious errors in the list (and correct them if there are!) and try to import the list again.{% endblocktrans %}
{% blocktrans %}Remember that the expected structure is date on the first columns and weight on the second.{% endblocktrans %}
{% trans "Date" %} | {% trans "Weight" %} |
---|---|
{{ entry.0 }} | {{ entry.1 }} |
{% blocktrans %}There were no errors, all entries could be converted!{% endblocktrans %}
{% endif %}{% blocktrans %}Continue here if you want to import into your weight log all entries that were successfully converted. All entries that produced an error will simply be ignored. It's up to you to decide whether they are useful (unrecognised entries) or not (e.g. headers, comments, etc.).{% endblocktrans %}
{% blocktrans %}You can correct the list here and re-submit it as often as you want.{% endblocktrans %}
{% endblock %}