Nicolas PASCAL

Results 72 comments of Nicolas PASCAL

if not more simply by changing the template_name attribute of each widget as in the cascade plugin https://github.com/jrief/djangocms-cascade/blob/29e7357cccec5a0e78f1498a95aef9ca7ce53e96/cmsplugin_cascade/bootstrap4/container.py#L31 it would be the same result, with more customization possible. I think...

After reflextion this is very convenient instead of overloaded all the template_name attributes needed for some widgets, it follows the logic of the django fieldsets. With a little logic it...

Yes, if i use apache and mod_wsgi with WSGIScriptAlias /myshop without applying PR divio/django-cms#6160 I get the error above.

It happens when I go to an page url with an apphook Catalog List.

Hi @elipavlov, possible related : https://github.com/awesto/cookiecutter-django-shop/pull/21 Otherwise what is the error output ?

@dismine, If it can help you, I just try with this, I see the fields it takes. in myshop/settings.py: ``` ... SHOP_CASCADE_FORMS= { 'CustomerForm': 'myshop.forms.checkout.CustomerForm', 'GuestForm': 'shop.forms.checkout.GuestForm', 'ShippingAddressForm': 'shop.forms.checkout.ShippingAddressForm', 'BillingAddressForm':...

Like this it seems to work: myshop/forms/checkout.py ``` # -*- coding: utf-8 -*- from shop.models.customer import CustomerModel from shop.forms.checkout import CustomerForm class CustomerForm( CustomerForm): class Meta: model = CustomerModel exclude...

Arbitrary name doesn't work because she's coded in hard here, maybe: https://github.com/awesto/django-shop/commit/741146d3d9870dfc7a6bb4642561cbd3531d8634#diff-92de288a3bb676dd22abc143bc151271R31

Which version of shop did you install and how did you install it, with [cookiecutter-django-shop ](https://github.com/awesto/cookiecutter-django-shop)? if so which version?

email_auth is required in settings INSTALLED_APPS if we use `AUTH_USER_MODEL = 'email_auth.User'`. I advise you to read the documentation on this subject : [django-shop-specific-settings]( https://django-shop.readthedocs.io/en/latest/reference/configuration.html?highlight=email_auth%20#django-shop-specific-settings) https://docs.djangoproject.com/en/dev/topics/auth/customizing/#auth-custom-user