django-shapeshifter
django-shapeshifter copied to clipboard
Allow subscripting of 'forms' variable in template.
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.).
This makes sense to me - @kennethlove?