django-ecommerce-project icon indicating copy to clipboard operation
django-ecommerce-project copied to clipboard

The Django-Ecommerce is an open-source project initiative and tutorial series built with Python and the Django Framework.

Results 10 django-ecommerce-project issues
Sort by recently updated
recently updated
newest added

The code in Part-01 Django Models Views and Testing/Part-1 Initial/store/admin.py produces the following error when attempting to create a superuser: : (admin.E116) The value of 'list_filter[1]' refers to 'is_active', which...

I noticed that on part3/final/account/forms.py on line 35 the validation was not working. it seems to be working because of the django default validation but clean_username() function is not called...

in store>view.py line 13 category__in=Category.objects.get(name=category_slug).get_descendants(include_self=True) should most likely be category__in=Category.objects.get(_name=category_).get_descendants(include_self=True) if the slug and the category name does not match, it throws and exception in the original code. The category...

The problem is with this line: **path("activate//)/", views.account_activate, name="activate")** The problem is not obvious with console email emulator, if you copy and use the link as is. But the url...

This is the block we have here in account/views.py: ``` try: uid = force_text(urlsafe_base64_decode(uidb64)) user = Customer.objects.get(pk=uid) except (TypeError, ValueError, OverflowError, user.DoesNotExist): ``` same block is present in pre-refactorin lectures,...

I don't know, exactly, why the site keeps working, but once I've enabled debug logging server-side, there came in a flood of messages pointing to the same problem on lines...

Hi, Tried to create super user `python manage.py createsuperuser` and got the following error: ``` ERRORS: : (admin.E029) The value of 'prepopulated_fields["slug"]' must be a list or tuple. : (admin.E029)...

As I'm learning from your tutorials and facing some issue, but find out some of the files have not full code in it, Please correct it by uploading all the...

The problem is present here :- path("activate/slug:uidb64/slug:token)/", views.account_activate, name="activate") The url ending in characters which are not url-safe (specifically ')/' is manifest when sending an actual email - the url...

Hi @veryacademy, Just completed Section 6 ... Great tutorial 👍 Thought I'd ask whether there is a template for logout within the account app i.e. templates/account/logout.html or do we have...