Project

General

Profile

Download (165 Bytes) Statistics
| Branch: | Tag: | Revision:

calebasse / calebasse / statistics / templatetags / statistics_filters.py @ b16a4439

1 b16a4439 Mikaël Ates
# -*- coding: utf-8 -*-
2
from django import template
3
4
register = template.Library()
5
6
@register.filter
7
def is_list(value):
8
    return isinstance(value, (list, tuple))