From 1706570cf1ccb38b3dc35b03f98e927f77779291 Mon Sep 17 00:00:00 2001 From: Étienne Loks Date: Mon, 7 Mar 2016 17:43:24 +0100 Subject: Force submited attribute to dynamic tables (refs #3074) --- ishtar_common/templatetags/window_tables.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ishtar_common') diff --git a/ishtar_common/templatetags/window_tables.py b/ishtar_common/templatetags/window_tables.py index 687b2cf49..53075b20e 100644 --- a/ishtar_common/templatetags/window_tables.py +++ b/ishtar_common/templatetags/window_tables.py @@ -64,7 +64,7 @@ def dynamic_table_document(context, caption, associated_model, key, value, grid = JQueryJqGrid(None, None, model, table_cols=table_cols) source = unicode(reverse_lazy(url)) source_full = unicode(reverse_lazy(url_full)) if url_full else '' - source_attrs = '?{}={}'.format(key, value) + source_attrs = '?submited=1&{}={}'.format(key, value) if output == 'html': col_names, extra_cols = grid.get_cols() t = get_template('ishtar/blocks/window_tables/dynamic_documents.html') -- cgit v1.2.3