{% extends 'layout.html' %} {% load i18n %} {% load bookwyrm_tags %} {% load humanize %} {% block title %}{% trans "Directory" %}{% endblock %} {% block content %}

{% trans "Directory" %}

{% for user in users %}
{% include 'snippets/avatar.html' with user=user large=True %}
{{ user.display_name }} @{{ user|username }} {% include 'snippets/follow_button.html' with user=user %}
{% if user.summary %}
{{ user.summary | to_markdown | safe | truncatechars_html:40 }}
{% endif %}
{% endfor %}
{% include 'snippets/pagination.html' with page=users path="/directory" %}
{% endblock %}