Changes between Initial Version and Version 1 of Ticket #30894, comment 7
- Timestamp:
- Oct 23, 2019, 2:49:55 AM (5 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #30894, comment 7
initial v1 1 1 Hey Simon. I'm happy if you want to reopen and Accept, but I'm not entirely sure it's the best change... 2 2 3 `related_query_name` serves whento make filtering a little prettier where the `related_name` doesn't read right, i.e. you might want to write3 `related_query_name` serves to make filtering a little prettier where the `related_name` doesn't read right, i.e. you might want to write 4 4 `...filter(tag__name='...')` rather that `...filter(tag_set__name='...')` (or `tags` being the example from the docs). That reads better because you're saying ''where the tag name is ...'', i.e. checking the property on the individual, rather than the set. 5 5