I have an application which handles a typical "checkout" process for an
e-commerce website. Orders from online customers end up in several models
(order, billing/shipping address, line items, gateway data, shipments,
etc.). An administrator will have to be able to (a) create new orders
manually from the admin (b) change a select few fields in an order and/or
call methods on the model (c) view the entire order data in read-only mode .
Obviously this goes beyond what Django's out of the box admin can handle and
needs a custom interface.

That being said, I would like for this to work within the existing admin
interface, In other words, if I drop this checkout application into any
existing project, the order administration pages shows up in the regular
admin--just with my custom admin pages for those models rather than the
standard Django pages. I've never done this level of hacking/integrating
with Django's admin. Anybody have any tips, links to articles, etc. that
might help me research the best approach for this project?

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.

Reply via email to