z3a
z3a

Reputation: 1004

Django shopping app?

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 ?

Upvotes: 0

Views: 2358

Answers (1)

Seth
Seth

Reputation: 46433

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.

Upvotes: 2

Related Questions