django-shapeshifter icon indicating copy to clipboard operation
django-shapeshifter copied to clipboard

Allow subscripting of 'forms' variable in template.

Open martinogden opened this issue 4 years ago • 1 comments

forms.values() returns a dict_keys objects in Python 3, which is not subscriptable. Casting forms.values() to a list allows subscripting in the template (forms.0, forms.1 etc.).

martinogden avatar Jul 22 '21 22:07 martinogden

This makes sense to me - @kennethlove?

FlipperPA avatar Jul 23 '21 21:07 FlipperPA