{% extends "layouts/content-bootstrap.html" %} {% load i18n %} {% load django_tables2 %} {% block styles %} {% endblock %} {% block content %}

Add Image Charts 2.0

{% 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.name.label_tag }} {{ form.name }} {{ form.image_report }} {{ form.relative_index }}
{{ form.description.label_tag }} {{ form.description }}
{{ form.chart_type.label_tag }} {{ form.chart_type }}
{{ form.is_percentage.label_tag }} {{ form.is_percentage }}
{{ form.is_aggregate_results.label_tag }} {{ form.is_aggregate_results }}
{{ form.target_goal.label_tag }} {{ form.target_goal }}
{{ form.chart_height.label_tag }} {{ form.chart_height }}
{{ form.chart_visibility.label_tag }} {{ form.chart_visibility }}
{{ form.is_build_number.label_tag }} {{ form.is_build_number }}
{{ form.xaxis_attribute.label_tag }} {{ form.xaxis_attribute }}
{% endblock content_form %} {% endblock %} {% block scripts %} {% endblock %}