If you only need more than that, you can use the following simple snippet (put it in the /templatetags/morethan.py application):
from django import template
register = template.Library()
@register.filter
def gt(a, b):
return a > b
And in the template:
{% load greterthan %}
{% if forloop.counter|gt:10 %}...{% endif %}
source
share