On 12/21/05, Michael Hipp <[EMAIL PROTECTED]> wrote: > Could anyone elaborate - perhaps with pointers to docs or example code to > implement some of the features?
Here's how I'd imagine it would be set up: Models: Product (related ManyToMany to Category) Category (related ManyToMany to Product) User (either the built-in User model, or your own) Cart (related OneToOne to User and OneToMany to Product) This would give you the ability to add products to the site and categorize them, and to have a cart for each user that they can add products to. The hardest part would be payment processing; you'd need to write code in your checkout view that would take payment details and send that information through your processing service. -- "May the forces of evil become confused on the way to your house." -- George Carlin

