Нет такого столбца: Homepage_goods.number_text

У меня проблема с отображением текста модели в index.html Это код файла views.py

class IndexView(generic.ListView):
template_name = 'Homepage/index.html'
model = Goods
context_object_name = 'goods'

def description(self):
    return self.description_text

def price(self):
    return self.price_text

def number(self):
    return self.number_text

Это код html(index.html)

{% for good in goods %}
     <h3 class="numbers">{{good.number_text}}</h3>
{% endfor %}
Вернуться на верх