код шаблона
<html>
<head>
<meta charset="utf-8">
<title>Customer Page</title>
</head>
<body>
<h1>Dear user, please check if the the email list is correct</h1>
<ul>
{% for customer in customer_list.objects.all %}
<li>{{customer.Country}}</li>
{% endfor %}
</ul>
</body>
</html>
код просмотра
from practice.models import Customer
class CustomersView(ListView):
template_name = "practice/customer_list.html"
context_object_name = "customer_list"
def get_queryset(self):
return Customer.objects.all()
Однако в приведенном выше коде pylint подчеркивает Customer и заявляет, что «Class 'Customer' не имеет элемента 'objects'»
Браузер показывает только это
Уважаемый пользователь, пожалуйста, проверьте правильность списка адресов электронной почты
, а не часть l oop. Я проверил QuerySet, он не пустой.
In [1]: from practice.models import Customer
In [2]: Customer.objects.all()
Out[2]: <QuerySet [<Customer: Customer object (1)>, <Customer: Customer object (2)>]>
Какие могут быть возможные причины?