Just created a new app from scratch and still no ordering.  Was trying
with IE earlier, now with Safari and Firefox.  Firefox gives me this
error:

Error: Drag is not defined
Source File: http://localhost:8000/media/js/admin/ordering.js
Line: 20

Further investigation reveals the problem:

http://localhost:8000/media/js/dom-drag.js

Page not found:
/System/Library/Frameworks/Python.framework/Versions/2.3/lib/python2.3/site-packages/django/conf/admin_media/js/dom-drag.js

I just did an update to revisioin 679 and there is no dom-drag.js

did a quick google search and found a random copy of dom-drag.js[1]
that makes everything work much better.

However, trying to go to the toppings list page still gives me the
exception:

FieldDoesNotExist: name=_order

Here's the sql:

BEGIN;
CREATE TABLE pizza_pizzas (
    id integer NOT NULL PRIMARY KEY,
    name varchar(50) NOT NULL
);
CREATE TABLE pizza_toppings (
    id integer NOT NULL PRIMARY KEY,
    pizza_id integer NOT NULL REFERENCES pizza_pizzas (id),
    name varchar(50) NOT NULL,
    _order integer NULL
);
COMMIT;

ideas?  I am using sqlite3... could there be a sqlite3 problem with
_order?

- matt

[1]
http://www.koders.com/javascript/fid81CED372BE78963076412021F95F84BE6306D68D.aspx

Reply via email to