Update node reports table.
Disable search which is does not provide any real functionality since you can't search for unchanged, noop or changed, nor and can you filter on <month> <date> since the data is in UTC. Moved the page type to simple which only shows <prev> and <next> buttons. Having <numbers> here makes the tab to wide causing overlay onto the next column.
This commit is contained in:
@@ -13,7 +13,11 @@
|
|||||||
{% endblock script %}
|
{% endblock script %}
|
||||||
{% endblock head %}
|
{% endblock head %}
|
||||||
{% block onload_script %}
|
{% block onload_script %}
|
||||||
{{ macros.datatable_init(table_html_id="reports_table", ajax_url=url_for('reports_ajax', env=current_env, node_name=node.name), default_length=config.LITTLE_TABLE_COUNT, length_selector=config.TABLE_COUNT_SELECTOR, columns=columns) }}
|
{% macro extra_options(caller) %}
|
||||||
|
'pagingType': 'simple',
|
||||||
|
"bFilter": false,
|
||||||
|
{% endmacro %}
|
||||||
|
{{ macros.datatable_init(table_html_id="reports_table", ajax_url=url_for('reports_ajax', env=current_env, node_name=node.name), default_length=config.LITTLE_TABLE_COUNT, length_selector=config.TABLE_COUNT_SELECTOR, columns=columns, extra_options=extra_options) }}
|
||||||
{% endblock onload_script %}
|
{% endblock onload_script %}
|
||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
|
|||||||
Reference in New Issue
Block a user