views:

82

answers:

1

We are developing a django app for several restaurants, it's like a shopping chart.

We need the restaurant admins to be able to create their own restaurants, menus and products, and clients must be able to browse the menus and choose the products and confirm their delivery, like a shopping app, which is the best approach? Are there django apps/snippets that simplifies this task ?

+2  A: 

Here's a great starting point for django addons: http://code.djangoproject.com/wiki/DjangoResources

Unfortunately there's only one link for "shopping carts" in there (Satchmo), it doesn't mention django-cart (see this) or DJWarehouse.

Personally, I rolled my own. Simple shopping carts really don't take that long to implement. If your needs are more complex then Satchmo might be the way to go.

Seth