Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Multiply in django template

I am looping through cart-items, and want to multiply quantity with unit-price like this:

{% for cart_item in cart.cartitem_set.all %}
{{cart_item.quantity}}*{{cart_item.unit_price}}
{% endfor %}

Is it possible to do something like that? any other way to do it !! Thanks

like image 451
vijay shanker Avatar asked Oct 25 '13 11:10

vijay shanker


2 Answers

You need to use a custom template tag. Template filters only accept a single argument, while a custom template tag can accept as many parameters as you need, do your multiplication and return the value to the context.

You'll want to check out the Django template tag documentation, but a quick example is:

from django import template
register = template.Library()

@register.simple_tag()
def multiply(qty, unit_price, *args, **kwargs):
    # you would need to do any localization of the result here
    return qty * unit_price

Which you can call like this:

{% load your_custom_template_tags %}

{% for cart_item in cart.cartitem_set.all %}
    {% multiply cart_item.quantity cart_item.unit_price %}
{% endfor %}

Are you sure you don't want to make this result a property of the cart item? It would seem like you'd need this information as part of your cart when you do your checkout.

like image 171
Brandon Avatar answered Oct 30 '22 12:10

Brandon


Or you can set the property on the model:

class CartItem(models.Model):
    cart = models.ForeignKey(Cart)
    item = models.ForeignKey(Supplier)
    quantity = models.IntegerField(default=0)

    @property
    def total_cost(self):
        return self.quantity * self.item.retail_price

    def __unicode__(self):
        return self.item.product_name
like image 32
Martin Avatar answered Oct 30 '22 12:10

Martin