Socialify

Folder ..

Viewing get_list.py
6 lines (5 loc) • 142.0 B

1
2
3
4
5
6
7
from django import template

register = template.Library()

@register.filter
def get_list(dictionary, key):
    return dictionary.getlist(key)