Pflichtenheft-CVar-Suche: Controls für Vergleichsoperatoren beibehalten
authorMoritz Bunkus <m.bunkus@linet-services.de>
Thu, 19 Feb 2015 12:37:52 +0000 (13:37 +0100)
committerSven Schöling <s.schoeling@linet-services.de>
Thu, 5 Mar 2015 12:42:59 +0000 (13:42 +0100)
templates/webpages/common/render_cvar_filter_input.html

index b1467c2..4ec984b 100644 (file)
@@ -6,11 +6,11 @@
  [%- L.select_tag(name__, [ '', [ 1, LxERP.t8('Yes') ], [ 0, LxERP.t8('No') ] ], default=value__, class=cvar_class) %]
 
 [%- ELSIF cvar_cfg.type == 'number' %]
- [% L.select_tag(name__ _ '::', [ [ 'eq', '==' ], [ 'ne', '=/=' ], [ 'gt', '>' ], [ 'ge', '>=' ], [ 'lt', '<' ], [ 'le', '<=' ] ]) %]
+ [% L.select_tag(name__ _ '::', [ [ 'eq', '==' ], [ 'ne', '=/=' ], [ 'gt', '>' ], [ 'ge', '>=' ], [ 'lt', '<' ], [ 'le', '<=' ] ], default=filter.cvar.item(cvar_cfg.id _ '__')) %]
  [% L.input_tag(name__, value__, class=cvar_class) %]
 
 [%- ELSIF cvar_cfg.type == 'date' %]
- [% L.select_tag(name__ _ '::', [ [ 'eq', '==' ], [ 'ne', '=/=' ], [ 'gt', '>' ], [ 'ge', '>=' ], [ 'lt', '<' ], [ 'le', '<=' ] ]) %]
+ [% L.select_tag(name__ _ '::', [ [ 'eq', '==' ], [ 'ne', '=/=' ], [ 'gt', '>' ], [ 'ge', '>=' ], [ 'lt', '<' ], [ 'le', '<=' ] ], default=filter.cvar.item(cvar_cfg.id _ '__')) %]
  [% L.date_tag(name__, value__, class=cvar_class) %]
 
 [% ELSIF cvar_cfg.type == 'select' %]