Changes between Initial Version and Version 1 of Ticket #7284
- Timestamp:
- Jun 16, 2008, 10:57:34 AM (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #7284 – Description
initial v1 1 1 Documentation could be clearer in this area. The existing example 2 2 3 {{{ 3 4 search_fields = ['foreign_key__related_fieldname'] 5 }}} 4 6 5 7 is a bit confusing absent a real table and example of the sort 6 8 7 search_fields = [user__name] or some such would be helpful as it took me, and I suspect many others, a bit of effort to discover the desired syntax. 9 {{{ 10 search_fields = [user__name] 11 }}} 8 12 13 or some such would be helpful as it took me, and I suspect many others, a bit of effort to discover the desired syntax. 14