django-shop icon indicating copy to clipboard operation
django-shop copied to clipboard

A Django based shop system

Results 104 django-shop issues
Sort by recently updated
recently updated
newest added

Currently the cart and checkout are implemented via rest ViewSets to handle the server side logic, angular directives on the client side to interact with it and cms plugins to...

Until Django.1.9, the username was restricted to 30 characters. For anonymous users, django-SHOP uses the session_key as a unique identifier. This required to encode the session_key of length 32 to...

feature request
accepted
easy-picking

Hi @jrief, @rfleschenberg and other devs! Now I translate documentation of django-shop to russian language. At this moment I translated 18 pages of documentation and placed this translation to my...

I get error if I try to save existing customer without email in admin: ``` NOT NULL constraint failed: auth_user.email ```

I using generic assign values to django model which contain MoneyField But when I use `get_internal_type()` it do not return `MoneyField` I notice we have a migrations https://github.com/awesto/django-shop/pull/344/commits/6a33d48b86aa7a433b8a13e43745b8742fee66ae where we...

When having an error in any site that uses the CMSPageRenderer as its renderer, the CMSPageRenderer retrieves the exception template, which does not support the `request` keyword argument and then...

bug

I find Its description in settings.py only. And one question: how I can display unit_price without zero after comma in template. For example: ``` {{ product.unit_price }} ``` I wan't...

Pressing the `Watch product` button on the add2cart panel on the product detail page currently runs `addToCart('{% url 'shop:watch-list' %}', {watch: true})`. If on the modal you then hit one...

feature request
accepted

and move the RST-sources into it's own folder.

easy-picking

In demo (didn't try anywhere else) the MoneyField is rendered empty on a change form, due to value rendered with currency in number field. ``` python class MoneyFieldWidget(forms.widgets.NumberInput): def render(self,...

bug