You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now, {% adjust_bulk %} lets you do an optimized adjustment of a bunch of (say) image fields for a queryset. But you can only do one adjustment per item in the iterable. That's a problem; often you'll have two fields that need to be adjusted, or one field that needs to be adjusted in two different ways. We should support that.
The text was updated successfully, but these errors were encountered:
Specifically the issue here is that you might be looping over one iterable but want to have multiple images rendered for each item in the iterable - say, different sizes depending on window size or device resolution.
Right now,
{% adjust_bulk %}
lets you do an optimized adjustment of a bunch of (say) image fields for a queryset. But you can only do one adjustment per item in the iterable. That's a problem; often you'll have two fields that need to be adjusted, or one field that needs to be adjusted in two different ways. We should support that.The text was updated successfully, but these errors were encountered: