Changes between Version 92 and Version 93 of S3/S3REST/s3_rest_controller


Ignore:
Timestamp:
01/12/22 09:44:05 (3 years ago)
Author:
Fran Boon
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • S3/S3REST/s3_rest_controller

    v92 v93  
    9393
    9494{{{#!python
    95 s3mgr.configure(table,
    96                 list_fields=["id", "name", "location_id"])
     95s3db.configure(table,
     96               list_fields=["id", "name", "location_id"])
    9797}}}
    9898
     
    102102
    103103{{{#!python
    104 s3mgr.configure(table,
    105                 list_fields=["id",
    106                              "name",
    107                              "location_id",
    108                              (T("Total costs"), "total_costs")]
     104s3db.configure(table,
     105               list_fields=["id",
     106                            "name",
     107                            "location_id",
     108                            (T("Total costs"), "total_costs"),
     109                            ]
    109110}}}
    110111
     
    114115
    115116{{{#!python
    116 s3mgr.configure(table,
    117                 list_fields=["id",
    118                              "name",
    119                              "location_id$lat",
    120                              "location_id$lon"]
     117s3db.configure(table,
     118               list_fields=["id",
     119                            "name",
     120                            "location_id$lat",
     121                            "location_id$lon",
     122                            ]
    121123}}}
    122124