calebasse / calebasse / statistics / templatetags / statistics_filters.py @ b16a4439
1 |
# -*- 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)) |
- « Previous
- 1
- 2
- Next »