mirror of
https://github.com/apache/superset.git
synced 2026-06-01 13:49:21 +00:00
* improve superset list view page layout - less header spaces and stacks - move pagination down to bottom - apply material design style to 'add' action button - will apply to all superset list view, like slices list, security tab lists etc. * improve superset list view page layout - less header spaces and stacks - move pagination down to bottom - apply material design style to 'add' action button - will apply to all superset list view, like slices list, security tab lists etc. * improve superset list view page layout - less header spaces and stacks - move pagination down to bottom - apply material design style to 'add' action button - will apply to all superset list view, like slices list, security tab lists etc. * improve superset list view page layout - less header spaces and stacks - move pagination down to bottom - apply material design style to 'add' action button - will apply to all superset list view, like slices list, security tab lists etc. * improve superset list view page layout - less header spaces and stacks - move pagination down to bottom - apply material design style to 'add' action button - will apply to all superset list view, like slices list, security tab lists etc. * remove tabs from indentation * fix merge conflicts * adjust css after code merge
18 lines
423 B
HTML
18 lines
423 B
HTML
{% extends "appbuilder/base.html" %}
|
|
{% import 'appbuilder/general/lib.html' as lib %}
|
|
|
|
{% block content %}
|
|
{{ lib.panel_begin(title) }}
|
|
|
|
<div class="panel-body list-container">
|
|
{% block list_search scoped %}
|
|
{{ widgets.get('search')()|safe }}
|
|
{% endblock %}
|
|
|
|
{% block list_list scoped %}
|
|
{{ widgets.get('list')()|safe }}
|
|
{% endblock %}
|
|
</div>
|
|
|
|
{{ lib.panel_end() }}
|
|
{% endblock %} |