Empresas
Empleos
  • Sobre nosotros
  • Soluciones
    • Publicación de vacantes
      Publica tu vacante y recibe candidatos calificados en 48h.
    • Evaluación de candidatos
      500+ pruebas técnicas y psicológicas, más anti-fraude.
    • Headhunting
      Búsqueda ejecutiva a la medida de principio a fin.
    • Nómina + EOR
      Dispersión de nómina y EOR en más de 15 países de LATAM.
  • Precios
  • Empleos

0

391
Vistas
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 Respuestas
Responde la pregunta

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 Denunciar

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 Denunciar
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar vacante Precios Comercial
Legal
Términos y condiciones Política de privacidad
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomiéndame algunas ofertas
Necesito ayuda