Django basket as a beginner

I am new to django and am trying to add a shopping cart to a simple online store. I need a simple cart that can be filled and presented with its contents, which is then sent to the supplier by e-mail. Therefore, Satchmo may be too big for this task. So I chose django-cart (http://code.google.com/p/django-cart/), which causes some problems.

1. Is the django cart right? Or are there any more efficient approaches to this task?

2. Since I'm a beginner, even the django cart makes me fight. I used the django-cart website presentation and template, but it took me hours to write a form that can be used to add products to the cart. I probably need help understanding the general layout of the shopping cart and integrating it into the website.

3. Two more specific questions: is it possible to dynamically populate a form field in a template (for example, with {{object.id}})? Can a django cart change (update) the contents of a basket?

Hope these are not too many questions right away.

Thanks in advance Jacques

+3
source share
1 answer

1: , , Satchmo . django-cart , , . , , , .

2: ?
http://code.google.com/p/django-cart/ ( ). .

- , , :)

3:

+2

Source: https://habr.com/ru/post/1793382/


All Articles