Tabular inline improvement

2012-08-28 Thread Dylan Klomparens
Hello all, I have a suggestion for improving the tabular inline view of the admin site (contained in /contrib/admin/templates/admin/edit_inline/tabular.html). I recently overloaded this template for my own purposes, and am wondering if the Django community would find my changes useful. If so, I

Possible ORM bug with SQL syntax & generic relations

2013-01-30 Thread Dylan Klomparens
Hello, I've encountered what may be a Django ORM bug and am writing to see what the dev community thinks. I have a model that uses generic relations. An error is returned when I attempt to delete multiple rows of sa

Re: Possible ORM bug with SQL syntax & generic relations

2013-01-30 Thread Dylan Klomparens
Something I forgot to mention: I have *only observed the bug using Oracle 11g*. Everything seems to work fine with SQLite3. On Wed, Jan 30, 2013 at 6:30 PM, Dylan Klomparens < dylan.klompar...@gmail.com> wrote: > Hello, > > I've encountered what may be a Django ORM bug a

Re: Possible ORM bug with SQL syntax & generic relations

2013-01-30 Thread Dylan Klomparens
e SQL statement has 4 opening parenthesis, and only 3 closing parenthesis. This kind of statement work in Oracle 10g XE? On Wed, Jan 30, 2013 at 7:30 PM, Ian Kelly wrote: > On Wed, Jan 30, 2013 at 4:30 PM, Dylan Klomparens > wrote: > > Hello, > > > > I've encountered w

Re: Possible ORM bug with SQL syntax & generic relations

2013-01-31 Thread Dylan Klomparens
Thu, Jan 31, 2013 at 2:04 AM, Ian Kelly wrote: > On Wed, Jan 30, 2013 at 10:10 PM, Dylan Klomparens > wrote: > > It's interesting this seems to work with 10g XE. I am not sure if this is > > relevant, but I am using the Full Oracle Client with Administrative Tools > > (as

Re: Possible ORM bug with SQL syntax & generic relations

2013-01-31 Thread Dylan Klomparens
I have confirmed that removing the ordering line from the Meta class of the model hides this bug. It looks as though your first assessment was spot on, Ian :-). On Thu, Jan 31, 2013 at 11:40 AM, Dylan Klomparens < dylan.klompar...@gmail.com> wrote: > Some additional information: he