Changes between Initial Version and Version 1 of Ticket #28374


Ignore:
Timestamp:
Jul 7, 2017, 10:35:59 AM (7 years ago)
Author:
Tim Graham
Comment:

Can you try to simplify the steps to reproduce? For example, I don't think a view should be required. Also, include a minimal model. If you can provide a test for Django's test suite, that's ideal.

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #28374

    • Property Component UncategorizedDatabase layer (models, ORM)
    • Property Type UncategorizedBug
  • Ticket #28374 – Description

    initial v1  
    1 I have a model called "item" in an app called "PoliceInventory".  I have a View for updating this model from a form, which inherits from DetailView and UpdateView.  Note that I am leaving out code I believe to be irrelevant, but can provide more if needed.  I am running 1.11.3 (to make sure I have the new fix for [https://code.djangoproject.com/ticket/19513], which I believe to be the same bug).  I have placed a comment in the code below where the ProgrammingError is thrown.  This is in Python 3.5.2.
     1I have a model called "item" in an app called "PoliceInventory".  I have a View for updating this model from a form, which inherits from DetailView and UpdateView.  Note that I am leaving out code I believe to be irrelevant, but can provide more if needed.  I am running 1.11.3 (to make sure I have the new fix for #19513, which I believe to be the same bug).  I have placed a comment in the code below where the ProgrammingError is thrown.  This is in Python 3.5.2.
    22
    33ProgrammingError:
Back to Top