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

Hi there. Recently i've tried to generate demo instance of django-shop from cookiecutter template. It was generated successfully. But when i've tried to up services, web application started throwing errors....

bug

**Problem** I'm trying to create own SelfCollectionWorkflowMixin. I've created class: ``` class SelfCollectionWorkflowMixin(object): TRANSITION_TARGETS = { 'ready_for_take': _("Ready for take"), 'order_completed': _("Order completed"), } def __init__(self, *args, **kwargs): if not...

### Problem I'm trying to overwrite the default_limit on the ProductListPagination. To do that I have created a derived class ``` class BiggerProductListPagination(ProductListPagination): default_limit = 100 ``` However, passing there...

Django rest framework recently updated to version 3.7.0 ([Release notes](https://github.com/encode/django-rest-framework/blob/22565d9a652fe45239c1480fd0acfc0d06ddda65/docs/topics/release-notes.md)) and it seems some changes are causing django-shop to break. First error encountered: ``` ImportError: Could not import 'rest_framework.filters.DjangoFilterBackend' for...

TemplateSyntaxError: 'html_email' is not a registered tag library.

The documentation says: > Another method for adding images to HTML emails is to inline their payload. This means that images, instead of referring them by URI, are inlined as...

feature request

"CMS Plugins" menu in he TextPlugin is always empty for the Description field on the Product model. ![03_03_2019__22 41 51](https://user-images.githubusercontent.com/442646/53702354-4d5a4c00-3e06-11e9-9845-596da226822c.png) The screenshot above is from the demo, following tutorial. "CMS...

Would there be any update for django 2.0?

Following the instructions in the [Tutorial](http://django-shop.readthedocs.io/en/latest/tutorial/intro.html), I get the error while trying to migrate. Guess ``` djangoshop-stripe``` is missing in requirements/common.txt After I installed it manually migration worked like a...

Hi I import ShopPluginBase from shop.cascade.plugin_base in my project, but failed cause "django.core.exceptions.AppRegistryNotReady: Models aren't loaded yet." I used the django-shop example as below: **myshop/cascade.py** ``` python from cms.plugin_pool import...