{% extends 'about/layout.html' %} {% load humanize %} {% load i18n %} {% load utilities %} {% load landing_page_tags %} {% load cache %} {% block title %} {% trans "About" %} {% endblock %} {% block about_content %} {# seven day cache #} {% cache 604800 about_page_superlatives %} {% get_book_superlatives as superlatives %}

{% 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 seamlessly with users anywhere in the BookWyrm network, this community is unique. {% endblocktrans %}

{% if superlatives.top_rated %} {% with book=superlatives.top_rated.default_edition rating=superlatives.top_rated.rating %}
{% blocktrans trimmed with title=book|book_title book_path=book.local_path site_name=site.name rating=rating|floatformat:1 %} {{ title }} is {{ site_name }}'s most beloved book, with an average rating of {{ rating }} out of 5. {% endblocktrans %}
{% endwith %} {% endif %} {% if superlatives.wanted %} {% with book=superlatives.wanted.default_edition %}
{% blocktrans trimmed with title=book|book_title book_path=book.local_path site_name=site.name %} More {{ site_name }} users want to read {{ title }} than any other book. {% endblocktrans %}
{% endwith %} {% endif %} {% if superlatives.controversial %} {% with book=superlatives.controversial.default_edition %}
{% blocktrans trimmed with title=book|book_title book_path=book.local_path site_name=site.name %} {{ title }} has the most divisive ratings of any book on {{ site_name }}. {% endblocktrans %}
{% endwith %} {% endif %}

{% blocktrans trimmed %} 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. {% endblocktrans %}

{% endcache %}

{% trans "Meet your admins" %}

{% url "conduct" as coc_path %} {% blocktrans trimmed 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 %}