Предположим, у меня есть 2 модели клиента и учетной записи.
Модели
class Account(models.Model):
customer = models.ForeignKey(Customer,on_delete=models.CASCADE,
blank=True,null=True,related_name='account')
desc = models.CharField(max_length=100)
paid = models.IntegerField(default=0)
received = models.IntegerField(default=0)
created_at = models.DateTimeField(auto_now_add=True)
class Customer(models.Model):
name = models.CharField(max_length=30,unique=True)
contact = models.CharField(max_length=10)
Я хочу получить доступ к полям Сумма полученных и Сумма оплаченных в шаблоне
Просмотр клиентов
def show_customer(request,id=None):
customer = Customer.objects.filter(user=request.user)
return render(request,'customer/show_customer.html',{'customer':customer})
show_customer. html
<html>
{% for cust in customer %}
{{cust.name}}
{{cust.contact}}
**Here I want sum of paid & sum of receive for current customer**
</html>