diff options
| author | Étienne Loks <etienne.loks@iggdrasil.net> | 2016-03-07 17:43:24 +0100 |
|---|---|---|
| committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2016-03-07 17:43:24 +0100 |
| commit | 1706570cf1ccb38b3dc35b03f98e927f77779291 (patch) | |
| tree | 9e52a411e30cf9eca07f5b5f005139a10f13552d /ishtar_common | |
| parent | cc05d8f59db768cd3deefb5424b71e3ee7511552 (diff) | |
| download | Ishtar-1706570cf1ccb38b3dc35b03f98e927f77779291.tar.bz2 Ishtar-1706570cf1ccb38b3dc35b03f98e927f77779291.zip | |
Force submited attribute to dynamic tables (refs #3074)
Diffstat (limited to 'ishtar_common')
| -rw-r--r-- | ishtar_common/templatetags/window_tables.py | 2 |
1 files changed, 1 insertions, 1 deletions
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') |
