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

{% trans "Directory" %}

{% if not request.user.discoverable %}

{% trans "Make your profile discoverable to other BookWyrm users." %}

{% csrf_token %}

{% url 'prefs-profile' as path %} {% blocktrans with path=path %}You can opt-out at any time in your profile settings.{% endblocktrans %}

{% trans "Dismiss message" as button_text %}
{% endif %} {% include 'directory/filters.html' %}
{% for user in users %}
{% include 'directory/user_card.html' %}
{% endfor %}
{% include 'snippets/pagination.html' with page=users path="/directory" %}
{% endblock %}