René Fleschenberg

Results 21 issues of René Fleschenberg

I think it would be cleaner if pelican themes were just plain Python packages that could be installed using setuptools / pip. This would enable users to rely on `pip...

``` class ProductPage(BaseProductPage): """Materialize many-to-many relation with CMS pages""" ``` We should add a `unique_together` constraint here.

We have three buttons there at the moment: * Show Cart * Continue Shopping * Cancel Instead of "Show Cart", I suggest something like "Go to checkout". "Cancel" is misleading....

easy-picking

- [x] Add flake8 config file - [ ] Test it - [ ] Add a flake8 check to travis - [ ] Fix all current flake8 errors

We should document in a nice, concise manner the exact requirements as well as the necessary steps to integrate django-shop into existing custom Django projects. Related: #394, #392.

documentation

Right now, we force a lot of things (dependencies and settings) onto projects that want to use django-shop. It is desirable to reduce these requirements. I am creating this issue...

internal

We have a bug with the address handling in the checkout, at least for certain checkouts that differ from the example shop. Further investigation is needed. See #544 and #560.

blocker
bug

Seee https://github.com/awesto/django-shop/issues/550

internal

In `shop/models/notification.py:order_event_notification`: ``` if not isinstance(instance, OrderModel): return ``` This check fails in my project. Not sure why. ``` (Pdb) instance (Pdb) isinstance(instance, OrderModel) False (Pdb) type(instance) (Pdb) OrderModel (Pdb)...

Traceback below. The problem seems to be that we are calling `connection.cursor()` in `shop/models/fields.py` at module level, and that uses the connection to the default database, not the test database....

bug