Отображение пустой страницы на сервере django после добавления python в файл index.html

пожалуйста, помогите, я следую учебнику и не показываю десиертный вывод на странице сервера. Все шло гладко, пока содержимое страницы index.html не было показано

Это мой файл index.html

<!DOCTYPE html>

<html lang="eng">
    <head>
        <meta charset="utf-8">
        <meta http-equiv="X-UA-Compatible" content="IE=edge">
        <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.6.1/dist/css/bootstrap.min.css" integrity="sha384-zCbKRCUGaJDkqS1kPbPd7TveP5iyJE0EjAuZQTgFLD2ylzuqKfdKlfG/eSrtxUkn" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.6.1/dist/js/bootstrap.bundle.min.js" integrity="sha384-fQybjgWLrvvRgtW6bFlB7jaZrFsaBXjsOMm/tB9LTS58ONXgqbR9W8oWht/amnpF" crossorigin="anonymous"></script>
        <title>document</title>
        <meta name="description" content="">
        <meta name="viewport" content="width=device-width, initial-scale=1">
        <link rel="stylesheet" href="">
    </head>

    <body>
        <div class="container">
            <div class="row">
                **{% for Product in product_objetcs %}**
                <div class="col-md-3">
                   <div class="card">
                   <img src="{{ product.image }}" class="card-img-top">
                   <div class="card-body">
                       <div class="card-title">
                               **{{ product.tittle }}**
                           </div>
                       <div class="card-text">
                              **{{ product.price }}**
                       </div>
                    </div>
                  </div>
              **{% endfor %}**
                </div>
             </div>
            </div>
    </body>
</html>

это моя страница просмотров

from django.shortcuts import render
from.models import Product

# Create your views here.
def index(request):
    product_objects = Product.objects.all()
    return render(request,

модели

<
from django.db import models

    # Create your models here.
    class Product(models.Model):
        title = models.CharField(max_length=200)
        price = models.FloatField()
        discount_price = models.FloatField()
        category = models.CharField(max_length=200)
        description = models.TextField()
         image = models.CharField(max_length=300) 
"моя страница моделей выглядит так"
Вернуться на верх