{% extends 'base.html' %}{% comment %}TEAM LISTING PAGE{% endcomment %}
{% load i18n %}
{% load thumbnail %}
{% block page-seo %}
Team > {{ members.0.team.name }}
{% if paginator.num_pages > 1 %}
{% if previous %}
{% trans "Previous" %}
{% endif %}
{% for page in paginator.page_range %}
{% if page < max_page and page > min_page %}
{% if current == page %}
{{ page }}
{% else %}
{{ page }}
{% endif %}
{% endif %}
{% endfor %}
{% if next %}
{% trans "Next" %}
{% endif %}
{% endif %}
{% endblock content %}