Is your feature request related to a problem? Please describe.
SEED is current not able to handle complex search/filter functions on a single column in the inventory view. For example if I wanted to get buildings between 25,000 and 50,000 there is no way to achieve that in the current structure.
Describe the solution you'd like
Enable basic language complex filtering like ">25000 & < 50000" in the inventory. See screenshot.
I believe this can be achieved by modifying seed/search.py to capture Django filter operators beyond icontains. My main goal would be it involved "gte/gt" and "lte/lt", but honestly if you can get "in" "year/month/day" or even "regex" that would be amazing.
Describe alternatives you've considered
The only other way I know how to achieve this is via literally exporting the data, creating a new column that meets the filter and then uploading that new column to the inventory.
Is your feature request related to a problem? Please describe.
SEED is current not able to handle complex search/filter functions on a single column in the inventory view. For example if I wanted to get buildings between 25,000 and 50,000 there is no way to achieve that in the current structure.
Describe the solution you'd like
Enable basic language complex filtering like ">25000 & < 50000" in the inventory. See screenshot.
I believe this can be achieved by modifying seed/search.py to capture Django filter operators beyond icontains. My main goal would be it involved "gte/gt" and "lte/lt", but honestly if you can get "in" "year/month/day" or even "regex" that would be amazing.
Describe alternatives you've considered
The only other way I know how to achieve this is via literally exporting the data, creating a new column that meets the filter and then uploading that new column to the inventory.