{% extends "layouts/content.html" %} {% block styles %} {% endblock %} {% block content %}

Add new query to chart...

{% block content_form %}
{% csrf_token %} {% if form.errors %}
{{ form.non_field_errors }}
    {% for field in form %} {% if field.errors %}
  • {{ field.label }}: {{ field.errors|striptags }}
  • {% endif %} {% endfor %}
{% endif %}
{{ form.chart_type.label_tag }} {{ form.chart_type }}
{{ form.attributes.label_tag }} {{ form.attributes }}   
{{ form.xaxis_attribute.label_tag }} {{ form.xaxis_attribute }}
{{ form.chart_height.label_tag }} {{ form.chart_height }}
{{ form.chart_visibility.label_tag }} {{ form.chart_visibility }}
{{ form.representation.label_tag }} {{ form.representation }}
{% endblock content_form %} {% endblock %} {% block scripts %} {% endblock %}