Changes between Initial Version and Version 1 of Ticket #25973, comment 1


Ignore:
Timestamp:
Dec 23, 2015, 4:12:08 AM (8 years ago)
Author:
Alasdair Nicol

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #25973, comment 1

    initial v1  
    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?
     1I believe this is a duplicate of #25548, which will be fixed in the upcoming 1.9.1 release.
     2
     3As a work around until 1.9.1 is released, you can replace the super call
     4
     5{{{
     6return super(BarCreateView, self).form_invalid(form)
     7}}}
     8
     9with it's implementation (it's only one line long)
     10
     11{{{
     12return self.render_to_response(self.get_context_data(form=form))
     13}}}
Back to Top