1 | | I believe this is a duplicate of #25548, which will be fixed in the upcoming 1.9.1 release. Please could you test with the latest 1.9.X branch? |
| 1 | I believe this is a duplicate of #25548, which will be fixed in the upcoming 1.9.1 release. |
| 2 | |
| 3 | As a work around until 1.9.1 is released, you can replace the super call |
| 4 | |
| 5 | {{{ |
| 6 | return super(BarCreateView, self).form_invalid(form) |
| 7 | }}} |
| 8 | |
| 9 | with it's implementation (it's only one line long) |
| 10 | |
| 11 | {{{ |
| 12 | return self.render_to_response(self.get_context_data(form=form)) |
| 13 | }}} |