Empresas
Empregos
  • Sobre nós
  • Soluções
    • Publicação de vagas
      Publique sua vaga e receba candidatos qualificados em 48h.
    • Avaliações de candidatos
      Mais de 500 testes técnicos e psicológicos, mais anti-fraude.
    • Headhunting
      Busca executiva personalizada do início ao fim.
    • Folha de Pagamento + EOR
      Dispersão de folha e EOR em mais de 15 países da LATAM.
  • Preços
  • Empregos

0

392
Visualizações
How to subtract two fields in django templates?

Before marking as duplicate to numerous other questions on SO, read. I have three fields, Credit Available, Credit Limit and Credit Balance. I'm getting the values for Credit Limit and Credit Balance from my database. To display Credit Available, I want to do Credit Limit-Credit Balance. I tried doing this from other answers on stackoverflow, but they did not work

<tr>
    <td style="text-align:center">{{ credit.credit_limit|add:"-{{credit.credit_balance}}" }}</td>
    <td align="center">{{ credit.credit_limit}}</td>
    <td align="center">{{ credit.credit_balance }}</td>
</tr>

Can I do this without writing new template tags or using the mathfilter module?

about 4 years ago · Santiago Trujillo
2 Respostas
Responde à pergunta

0

The correct syntax for adding the limit to the balance is

{{ credit.credit_limit|add:credit.credit_balance }}

as per https://docs.djangoproject.com/en/1.10/ref/templates/builtins/#add. Unfortunately, putting a minus sign in front of a variable won't work to make it negative.

You could use a custom template filter, which would be fairly straightforward. It might look like this:

@register.filter(name='subtract')
def subtract(value, arg):
    return value - arg

Then in your template (after loading it) it would be:

{{ credit.credit_limit|subtract:credit.credit_balance }}
about 4 years ago · Santiago Trujillo Relatório

0

There is an alternative way as I tried to explain here:

Variable subtraction in django templates

I'm sure this method can be applied to your question too.

I'm pretty sure it's still better to go with a custom template helper anyway.. It's also not wrong to add the calculated value to your view / model imo.

Hope this helps..

about 4 years ago · Santiago Trujillo Relatório
Responde à pergunta
Encontrar trabalhos remotos

Descubra a nova forma de encontrar um emprego!

melhores empregos
Principais categorias de trabalho
Empresas
Postar vaga Preços Comercial
Jurídico
Termos e Condições Política de privacidade
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomende algumas ofertas para mim
Preciso de ajuda