{% extends "panoramix/datasource.html" %} {% block head_css %} {{super()}} {% endblock %} {% block viz %} {{ super() }} {% if not error_msg %} {% for col in df.columns if not col.endswith('__perc') %} {% endfor %} {% for row in df.to_dict(orient="records") %} {% for col in df.columns if not col.endswith('__perc') %} {% if col + '__perc' in df.columns %} {% else %} {% endif %} {% endfor %} {% endfor %}
{{ col }}
{{ row[col] }}{{ row[col] }}
{% endif %} {% endblock %} {% block extra_fields %}
{{ form.row_limit.label }}: {{ form.row_limit(class_="form-control select2") }}
{% endblock %} {% block tail %} {{ super() }} {% endblock %}