Skip to main content

django-carton is a simple and lightweight application for shopping carts and wish lists.

Project description

  +------+
 /|     /|
+-+----+ |    django-carton helps you build your shopping
| |    | |    cart and which list functionality.
| +----+-+
|/     |/
+------+
  • It’s simple: You decide how to implement the views, templates and payment processing.

  • It’s lightweight: The cart lives in the session.

  • It’s just a container: You define your product model the way you want.

Usage Example

View:

from django.http import HttpResponse

from carton.cart import Cart
from products.models import Product

def add(request):
    cart = Cart(request.session)
    product = Product.objects.get(id=request.GET.get('product_id'))
    cart.add(product, price=product.price)
    return HttpResponse("Added")

def show(request):
    return render(request, 'shopping/show-cart.html')

We are assuming here that your products are defined in an application called products.

Template:

{% load carton_tags %}
{% get_cart as cart %}

{% for item in cart.items %}
    {{ item.product.name }}
    {{ item.quantity }}
    {{ item.total_price }}
{% endfor %}

You can also use this convinent shortcut:
{% for product in cart.products %}
    {{ product.name }}
{% endfor %}

Documentation

Read more: https://github.com/lazybird/django-carton/

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-carton-1.0.2.tar.gz (6.8 kB view details)

Uploaded Source

File details

Details for the file django-carton-1.0.2.tar.gz.

File metadata

File hashes

Hashes for django-carton-1.0.2.tar.gz
Algorithm Hash digest
SHA256 b38b8045fe43c4267bba0b0720d385b66e116170dc55394aa2f67e152061523b
MD5 d1c2a75608d0b0f8325fc9cecdb2797a
BLAKE2b-256 0556e6e6e16e4c1d2fa3e79e3a25e56bfbcebe76640a1840d2fc0d2832ee93a1

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page