Skip to content

Instantly share code, notes, and snippets.

@esseti
Created March 30, 2018 15:38
Show Gist options
  • Save esseti/3f419a93ad98cf8bd6297f38e79de541 to your computer and use it in GitHub Desktop.
Save esseti/3f419a93ad98cf8bd6297f38e79de541 to your computer and use it in GitHub Desktop.
from django import template
register = template.Library()
@register.filter
def index(List, i):
return List[int(i)]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment