Changes between Initial Version and Version 1 of Ticket #30925
- Timestamp:
- Oct 29, 2019, 11:39:32 AM (5 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #30925 – Description
initial v1 5 5 In my project, I would need to use something like: 6 6 7 .filter(attr__istartof= myVar) 7 {{{ 8 .filter(attr\_\_istartof= myVar) 9 }}} 8 10 9 11 Since istartof is missing, I do: 10 12 {{{ 11 13 .extra(where=["%s ILIKE attr||'%%'"], params=[myVar]) 12 14 }}} 13 15 Thanks for your great job with Django ! 14 16 Regards,