Multiply in django template

后端 未结 4 1720
无人及你
无人及你 2020-12-10 14:30

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}}         


        
相关标签:
4条回答
  • 2020-12-10 14:44

    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.

    0 讨论(0)
  • 2020-12-10 14:47

    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
    
    0 讨论(0)
  • 2020-12-10 15:02

    You can use widthratio builtin filter for multiplication and division.

    To compute A*B: {% widthratio A 1 B %}

    To compute A/B: {% widthratio A B 1 %}

    source: link

    Notice: For irrational numbers, the result will round to integer.

    0 讨论(0)
  • 2020-12-10 15:05

    You can do it in template with filters.

    https://docs.djangoproject.com/en/dev/howto/custom-template-tags/#writing-custom-template-filters

    From documentation:

    Here’s an example filter definition:

    def cut(value, arg):
        """Removes all values of arg from the given string"""
        return value.replace(arg, '')
    

    And here’s an example of how that filter would be used:

    {{ somevariable|cut:"0" }}
    
    0 讨论(0)
提交回复
热议问题