{% extends "base.html" %} {% block container %} {% if trackform.non_field_errors %} {% for e in trackform.non_field_errors %}
{% endfor %} {% endif %}
{% csrf_token %}

Track


{% if trackform.errors.title %} {% endif %} {{ trackform.title }}
{% if trackform.errors.dataset_select %} {% endif %} {{ trackform.dataset_select }}
{% if trackform.errors.description %} {% endif %} {{ trackform.description }}
{% if trackform.errors.metrics %} {% endif %} {{ trackform.metrics }}
{% if trackform.errors.baseline %} {% endif %} {{ trackform.baseline }}

{% endblock container %}