{% extends 'about/layout.html' %} {% load humanize %} {% load i18n %} {% load utilities %} {% block title %} {% trans "About" %} {% endblock %} {% block about_content %}

{% blocktrans with site_name=site.name %}Welcome to {{ site_name }}!{% endblocktrans %}

{% blocktrans trimmed with site_name=site.name %} {{ site_name }} is part of BookWyrm, a network of independent, self-directed communities for readers. While you can interact seemlessly with users anywhere in the BookWyrm network, this community is unique. {% endblocktrans %}

{% blocktrans trimmed with title=top_rated|book_title site_name=site.name rating=top_rated.rating|floatformat:1 %} {{ title }} is {{ site_name }}'s most beloved book, with a {{ rating }} rating out of 5 {% endblocktrans %}
{% blocktrans trimmed with title=wanted|book_title site_name=site.name %} More {{ site_name }} users want to read {{ title }} {% endblocktrans %}
{% blocktrans trimmed with title=controversial|book_title site_name=site.name %} {{ title }} has the most divisive ratings of any book on {{ site_name }} {% endblocktrans %}

{% trans "Track your reading, talk about books, write reviews, and discover what to read next. Always ad-free, anti-corporate, and community-oriented, BookWyrm is human-scale software, designed to stay small and personal. If you have feature requests, bug reports, or grand dreams, reach out and make yourself heard." %}

{% trans "Meet your admins" %}

{% url "conduct" as coc_path %} {% blocktrans with site_name=site.name %} {{ site_name }}'s moderators and administrators keep the site up and running, enforce the code of conduct, and respond when users report spam and bad behavior. {% endblocktrans %}

{% for user in admins %}
{% with role=user.groups.first.name %}
{% if role == "moderator" %} {% trans "Moderator" %} {% else %} {% trans "Admin" %} {% endif %}
{% endwith %}
{% include 'user/user_preview.html' with user=user %}
{% if request.user.is_authenticated and user.id != request.user.id %} {% endif %}
{% endfor %}
{% endblock %}