{% extends "superset/basic.html" %}
{% import 'appbuilder/general/lib.html' as lib %}
{% import "superset/models/role/role_list.html" as macro %}
{% block head_js %}
{{ super() }}
{% with filename="jquery" %}
{% include "superset/partials/_script_tag.html" %}
{% endwith %}
{% with filename="bootstrap" %}
{% include "superset/partials/_script_tag.html" %}
{% endwith %}
{% with filename="bootstrap-datepicker" %}
{% include "superset/partials/_script_tag.html" %}
{% endwith %}
{% with filename="react" %}
{% include "superset/partials/_script_tag.html" %}
{% endwith %}
{% with filename="d3" %}
{% include "superset/partials/_script_tag.html" %}
{% endwith %}
{% with filename="d3-tip" %}
{% include "superset/partials/_script_tag.html" %}
{% endwith %}
{% with filename="nvd3" %}
{% include "superset/partials/_script_tag.html" %}
{% endwith %}
{% with filename="redux" %}
{% include "superset/partials/_script_tag.html" %}
{% endwith %}
{% with filename="echarts" %}
{% include "superset/partials/_script_tag.html" %}
{% endwith %}
{% with filename="ag-grid" %}
{% include "superset/partials/_script_tag.html" %}
{% endwith %}
{% with filename="react-ace" %}
{% include "superset/partials/_script_tag.html" %}
{% endwith %}
{% with filename="react-bootstrap" %}
{% include "superset/partials/_script_tag.html" %}
{% endwith %}
{% with filename="react-bootstrap-table" %}
{% include "superset/partials/_script_tag.html" %}
{% endwith %}
{% with filename="react-dom" %}
{% include "superset/partials/_script_tag.html" %}
{% endwith %}
{% with filename="react-draggable" %}
{% include "superset/partials/_script_tag.html" %}
{% endwith %}
{% with filename="react-draggable-tab" %}
{% include "superset/partials/_script_tag.html" %}
{% endwith %}
{% with filename="react-dropzone" %}
{% include "superset/partials/_script_tag.html" %}
{% endwith %}
{% with filename="react-gravatar" %}
{% include "superset/partials/_script_tag.html" %}
{% endwith %}
{% with filename="react-grid-layout" %}
{% include "superset/partials/_script_tag.html" %}
{% endwith %}
{% with filename="react-intl" %}
{% include "superset/partials/_script_tag.html" %}
{% endwith %}
{% with filename="react-map-gl" %}
{% include "superset/partials/_script_tag.html" %}
{% endwith %}
{% with filename="react-redux" %}
{% include "superset/partials/_script_tag.html" %}
{% endwith %}
{% with filename="react-resizable" %}
{% include "superset/partials/_script_tag.html" %}
{% endwith %}
{% with filename="react-select" %}
{% include "superset/partials/_script_tag.html" %}
{% endwith %}
{% with filename="react-datepicker" %}
{% include "superset/partials/_script_tag.html" %}
{% endwith %}
{% with filename="react-syntax-highlighter" %}
{% include "superset/partials/_script_tag.html" %}
{% endwith %}
{% with filename="datatables-bootstrap3-plugin" %}
{% include "superset/partials/_script_tag.html" %}
{% endwith %}
{% with filename="datatables.net-bs" %}
{% include "superset/partials/_script_tag.html" %}
{% endwith %}
{% endblock %}
{% block body %}
{{ lib.panel_begin(title) }}
{% block list_search scoped %}
{% call lib.accordion_tag("accordion1",_("Search"), False) %}
{{ widgets.get('search')()|safe }}
{% endcall %}
{{ macro.list() }}
{% endblock %}
{{ lib.panel_end() }}
{% endblock %}