{% extends theme('organization/display_base.html') %} {% from theme('macros/follow.html') import follow_btn with context %} {% block breadcrumb %}
  • {{ _('Organizations') }}
  • {{ org.name|truncate(120) }}
  • {{ _('Followers') }}
  • {% endblock %} {% block toolbar %} {% if can_edit %}
    {{ _('Edit') }}
    {% endif %}
    {{ follow_btn(org) }}
    {% endblock %} {% block org_content %}

    {{ ngettext('%(num)d follower', '%(num)d followers', followers|length) }}

    {% for follow in followers %}
    {% include theme('follow/follower-card.html') %}
    {% endfor %}
    {% endblock %}