MyEcommerce - https://www.snapdeal.com/
My e-ecommerce: Django 2.x - Python 3.x
python -m venv myenvironment cd myenvironment Scripts\activate || deactivate
pip3 install django python
import django django.get_version() django.VERSION exit()
pwd source bin/activate
django-admin startproject chipchip python manage.py migrate python manage.py runserver
python manage.py startapp shop
python manage.py makemigrations python manage.py migrate
python manage.py createsuperuser name: chipchip pass: chip2409
python manage.py shell
Block tags are represented like this.
{% block any...name %} you put the code here... {% endblock %}
{% comment %} you put the code here... {% endcomment %}
{% for... %} you put the code here... {% endfor %}
There are some exceptions like
{% url '...' %} {% load ... %} {% extends "base.html" %}