{% extends "timeseries-admin/base.html" %} {% block title %}{{ series }}{% endblock %} {% block content %}

{{ series }}

{% if readings.error %}

There was an error processing the readings that you uploaded:

{{ readings.error }}
{% endif %} {% if readings.count %}

{{ readings.count }} readings were successfully parsed from the file you uploaded, of which {{ readings.appended }} were added to the series. {% if readings.count != readings.appended %}Those omitted were before the previous last reading. {%endif %}The last reading is now at {{ series.last }}.

{% endif %}

Details

{{ form }}

Upload readings

Use this form to upload a CSV file containing readings. The CSV file should contain exactly two columns, the first containing a date-time string, and the second containing the reading.

{% endblock %}