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

Chart {{ chart.name }} Display

Status
{% if chart.is_published %} Published {% else %} Unpublished {% endif %}
{% if chart.is_published %}
Chart Group label
{{ chart.chart_group|default:"Click here to select"}}
{% if chart.chart_group %} {% else %} {% endif %}   
Maintainer
{{ chart.owner }}  
Group edit permission
{{ chart.group|default:"Click here to select"}}
  
{% endif %}
Description
{{ chart.description|keep_spacing|linebreaks }}
{% if chart|check_chart_access:request.user %} {% endif %}

Queries

Add query
{% for chart_query in chart.chartquery_set.all %}
Last updated: {% if chart_query.query.is_live %} Live query{% else %}{{ chart_query.query.last_updated | default:"Never" }}{% endif %}
Type: {{ chart_query.chart_type }}
Height: {{ chart_query.chart_height }}
Visibility: {{ chart_query.chart_visibility }}
Representation: {{ chart_query.representation }}
X-axis attribute: {{ chart_query.xaxis_attribute }}
{% empty %}
  • No queries added yet.
  • {% endfor %}
    {% endblock %} {% block scripts %} {% if chart.is_published %} {% endif %} {% endblock %}