{% extends "base.html" %} {% load staticfiles %} {% block container %} {% if datasetform.non_field_errors %} {% for e in datasetform.non_field_errors %}
{% endfor %} {% endif %}

Dataset


{% csrf_token %}
{% if datasetform.errors.dataset_title %} {% endif %} {{ datasetform.dataset_title }}

Introduce the name of the columns of the result separated by semi-colons {% if datasetform.errors.results_cols %} {% endif %} {{ datasetform.results_cols }}
{% if datasetform.errors.description %} {% endif %} {{ datasetform.description }}

{% endblock container %}