{% extends theme('layouts/1-column.html') %} {% block breadcrumb %}
  • {{ _('Datasets') }}
  • {{ dataset.acronym or dataset.title|truncate(128) }}
  • {{ _('Followers') }}
  • {% endblock %} {% block main_content %}

    {{ dataset.title }} {% if dataset.acronym %}{{ dataset.acronym }}{% endif %}

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

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