superset/app/templates/panoramix/viz_table.html

12 lines
213 B
HTML
Raw Normal View History

{% extends "panoramix/datasource.html" %}
{% block viz %}
{{ table|safe }}
{% endblock %}
{% block scripts %}
{{ super() }}
2015-07-14 16:26:35 -04:00
<script>
$('table').css('background-color', 'white');
</script>
{% endblock %}