Changes between Version 92 and Version 93 of S3/S3REST/s3_rest_controller
- Timestamp:
- 01/12/22 09:44:05 (3 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
S3/S3REST/s3_rest_controller
v92 v93 93 93 94 94 {{{#!python 95 s3 mgr.configure(table,96 95 s3db.configure(table, 96 list_fields=["id", "name", "location_id"]) 97 97 }}} 98 98 … … 102 102 103 103 {{{#!python 104 s3mgr.configure(table, 105 list_fields=["id", 106 "name", 107 "location_id", 108 (T("Total costs"), "total_costs")] 104 s3db.configure(table, 105 list_fields=["id", 106 "name", 107 "location_id", 108 (T("Total costs"), "total_costs"), 109 ] 109 110 }}} 110 111 … … 114 115 115 116 {{{#!python 116 s3mgr.configure(table, 117 list_fields=["id", 118 "name", 119 "location_id$lat", 120 "location_id$lon"] 117 s3db.configure(table, 118 list_fields=["id", 119 "name", 120 "location_id$lat", 121 "location_id$lon", 122 ] 121 123 }}} 122 124