euscan-ng/euscanwww/euscan/templatetags/mul.py
Corentin Chary 2dee08dfb7 euscanwww: category, categories and package views
Signed-off-by: Corentin Chary <corentincj@iksaif.net>
2011-04-15 00:24:45 +02:00

9 lines
136 B
Python

from django import template
register = template.Library()
def mul(value, arg=None):
return value*arg
register.filter('mul', mul)