2022-01-06 05:42:41 +00:00
{% extends 'about/layout.html' %}
2022-01-06 17:04:59 +00:00
{% load humanize %}
2022-01-06 05:42:41 +00:00
{% load i18n %}
{% load utilities %}
{% block title %}
{% trans "About" %}
{% endblock %}
{% block about_content %}
2022-01-06 17:04:59 +00:00
< section class = "content pb-4" >
< h2 >
{% blocktrans with site_name=site.name %}Welcome to {{ site_name }}!{% endblocktrans %}
< / h2 >
2022-01-06 05:42:41 +00:00
< p class = "subtitle notification has-background-primary-light" >
{% blocktrans trimmed with site_name=site.name %}
2022-01-06 17:04:59 +00:00
{{ site_name }} is part of < em > BookWyrm< / em > , a network of independent, self-directed communities for readers.
2022-01-06 05:42:41 +00:00
While you can interact seemlessly with users anywhere in the < a href = "https://joinbookwyrm.com/instances/" target = "_blank" > BookWyrm network< / a > , this community is unique.
{% endblocktrans %}
< / p >
< div class = "columns" >
2022-01-06 17:22:10 +00:00
< div class = "column is-one-third is-flex" >
2022-01-06 05:42:41 +00:00
< div class = "media notification" >
< div class = "media-left" >
< a href = "{{ book.local_path }}" >
{% include 'snippets/book_cover.html' with book=top_rated cover_class='is-h-m' size='medium' aria='show' %}
< / a >
< / div >
< div class = "media-content" >
2022-01-06 17:47:46 +00:00
{% blocktrans trimmed with title=top_rated|book_title book_path=book.local_path site_name=site.name rating=top_rated.rating|floatformat:1 %}
< a href = "{{ book_path }}" > < em > {{ title }}< / em > < / a > is {{ site_name }}'s most beloved book, with an average rating of {{ rating }} out of 5.
2022-01-06 05:42:41 +00:00
{% endblocktrans %}
< / div >
< / div >
< / div >
2022-01-06 17:22:10 +00:00
< div class = "column is-one-third is-flex" >
2022-01-06 05:42:41 +00:00
< div class = "media notification" >
< div class = "media-left" >
< a href = "{{ book.local_path }}" >
{% include 'snippets/book_cover.html' with book=wanted cover_class='is-h-m' size='medium' aria='show' %}
< / a >
< / div >
< div class = "media-content" >
2022-01-06 17:47:46 +00:00
{% blocktrans trimmed with title=wanted|book_title book_path=book.local_path site_name=site.name %}
More {{ site_name }} users want to read < a href = "{{ book_path }}" > < em > {{ title }}< / em > < / a > .
2022-01-06 05:42:41 +00:00
{% endblocktrans %}
< / div >
< / div >
< / div >
2022-01-06 17:22:10 +00:00
< div class = "column is-one-third is-flex" >
2022-01-06 05:42:41 +00:00
< div class = "media notification" >
< div class = "media-left" >
< a href = "{{ book.local_path }}" >
{% include 'snippets/book_cover.html' with book=controversial cover_class='is-h-m' size='medium' aria='show' %}
< / a >
< / div >
< div class = "media-content" >
2022-01-06 17:47:46 +00:00
{% blocktrans trimmed with title=controversial|book_title book_path=book.local_path site_name=site.name %}
< a href = "{{ book_path }}" > < em > {{ title }}< / em > < / a > has the most divisive ratings of any book on {{ site_name }}.
2022-01-06 05:42:41 +00:00
{% endblocktrans %}
< / div >
< / div >
< / div >
< / div >
< p >
2022-01-06 17:04:59 +00:00
{% 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, < a href = 'https://joinbookwyrm.com/get-involved' target = '_blank' > reach out< / a > and make yourself heard." %}
2022-01-06 05:42:41 +00:00
< / p >
< / section >
< section class = "block" >
< header class = "content" >
< h2 class = "title is-3" > {% trans "Meet your admins" %}< / h2 >
< p >
2022-01-06 17:09:00 +00:00
{% 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 < a href = "coc_path" > code of conduct< / a > , and respond when users report spam and bad behavior.
{% endblocktrans %}
2022-01-06 05:42:41 +00:00
< / p >
< / header >
2022-01-06 17:09:00 +00:00
2022-01-06 05:42:41 +00:00
< div class = "columns is-multiline" >
{% for user in admins %}
< div class = "column" >
< div class = "card is-stretchable" >
{% with role=user.groups.first.name %}
< div class = "card-header {% if role == " moderator " % } has-background-info-light { % else % } has-background-success-light { % endif % } " >
< span class = "card-header-title is-size-7 pt-1 pb-1" >
{% if role == "moderator" %}
{% trans "Moderator" %}
{% else %}
{% trans "Admin" %}
{% endif %}
< / span >
< / div >
{% endwith %}
< div class = "cord-content p-5" >
{% include 'user/user_preview.html' with user=user %}
< / div >
{% if request.user.is_authenticated and user.id != request.user.id %}
< div class = "has-background-white-bis card-footer" >
< div class = "card-footer-item" >
{% include 'snippets/follow_button.html' with user=user minimal=True %}
< / div >
< div class = "card-footer-item" >
< a href = "{% url 'direct-messages-user' user|username %}" > {% trans "Send direct message" %}< / a >
< / div >
< / div >
{% endif %}
< / div >
< / div >
{% endfor %}
< / div >
< / section >
{% endblock %}