Jarvis/jarvis/followup/templatetags/get_value_at_index.py

9 lines
138 B
Python
Raw Normal View History

2023-04-25 17:06:14 +02:00
from django import template
register = template.Library()
@register.filter
def get_value_at_index(list, index):
return list[index]