Maxime Lorant

Results 7 comments of Maxime Lorant

Might consider the Django [third-party `floppyforms`](http://django-floppyforms.readthedocs.org/en/latest/)? The rendering is based on templates instead of string interpolation. Performances are not that great (and it is focused on HTML rendering, of course),...

That could make sense. As long as checking a capability is pretty fast (and so choosing the best alternative) and does not degrade performances, I don't see any problems letting...

I took a look at this because I thought it would just be some wrapper around imports and renaming (such as what we do with unittest.mock vs mock) In fact,...

https://pypi.python.org/pypi/coverage Maybe consider adding coverage.py in the automated test suite (especially with livetest.py execution)? Really simple to set up and gives more insights, as it is based on the tests...

Haven't tried but something like: ``` def is_language_selection_needed(wizard): return not wizard.request.GET.has_key('language') ... condition__dict = {'select_lang': is_language_selection_needed} ``` is not working? (It might mess up the next steps though, once the...

Yeah, I understand... You could probably tweak around with the [`extra_data` attribute in the storage](https://github.com/django/django-formtools/blob/master/formtools/wizard/storage/base.py#L54), by overriding the `get` method of `WizardView`, BUT you can't really use `super()` in this...

For information (and those who might be blocked by this), it is possible to workaround this problem by using the following method: ``` from django.core.mail import EmailMultiAlternatives mail = EmailMultiAlternatives(...