mirror of
https://github.com/bookwyrm-social/bookwyrm.git
synced 2025-01-11 17:55:37 +00:00
Show notes
This commit is contained in:
parent
8556474537
commit
839ac061b7
1 changed files with 59 additions and 52 deletions
|
@ -20,60 +20,67 @@
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
{% block panel %}
|
{% block panel %}
|
||||||
<section class="block content">
|
<div class="columns">
|
||||||
<h2 class="title is-4">{% trans "Details" %}</h2>
|
<section class="column is-half content">
|
||||||
<dl>
|
<h2 class="title is-4">{% trans "Details" %}</h2>
|
||||||
<div class="is-flex">
|
<dl>
|
||||||
<dt>{% trans "Software:" %}</dt>
|
<div class="is-flex">
|
||||||
<dd>{{ server.application_type }}</dd>
|
<dt>{% trans "Software:" %}</dt>
|
||||||
</div>
|
<dd>{{ server.application_type }}</dd>
|
||||||
<div class="is-flex">
|
</div>
|
||||||
<dt>{% trans "Version:" %}</dt>
|
<div class="is-flex">
|
||||||
<dd>{{ server.application_version }}</dd>
|
<dt>{% trans "Version:" %}</dt>
|
||||||
</div>
|
<dd>{{ server.application_version }}</dd>
|
||||||
<div class="is-flex">
|
</div>
|
||||||
<dt>{% trans "Status:" %}</dt>
|
<div class="is-flex">
|
||||||
<dd>{{ server.status }}</dd>
|
<dt>{% trans "Status:" %}</dt>
|
||||||
</div>
|
<dd>{{ server.status }}</dd>
|
||||||
</dl>
|
</div>
|
||||||
</section>
|
</dl>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section class="column is-half content">
|
||||||
|
<h2 class="title is-4">{% trans "Activity" %}</h2>
|
||||||
|
<dl>
|
||||||
|
<div class="is-flex">
|
||||||
|
<dt>{% trans "Users:" %}</dt>
|
||||||
|
<dd>
|
||||||
|
{{ users.count }}
|
||||||
|
{% if server.user_set.count %}(<a href="{% url 'settings-users' %}?server={{ server.id }}">{% trans "View all" %}</a>){% endif %}
|
||||||
|
</dd>
|
||||||
|
</div>
|
||||||
|
<div class="is-flex">
|
||||||
|
<dt>{% trans "Reports:" %}</dt>
|
||||||
|
<dd>
|
||||||
|
{{ reports.count }}
|
||||||
|
{% if reports.count %}(<a href="{% url 'settings-reports' %}?server={{ server.id }}">{% trans "View all" %}</a>){% endif %}
|
||||||
|
</dd>
|
||||||
|
</div>
|
||||||
|
<div class="is-flex">
|
||||||
|
<dt>{% trans "Followed by us:" %}</dt>
|
||||||
|
<dd>
|
||||||
|
{{ followed_by_us.count }}
|
||||||
|
</dd>
|
||||||
|
</div>
|
||||||
|
<div class="is-flex">
|
||||||
|
<dt>{% trans "Followed by them:" %}</dt>
|
||||||
|
<dd>
|
||||||
|
{{ followed_by_them.count }}
|
||||||
|
</dd>
|
||||||
|
</div>
|
||||||
|
<div class="is-flex">
|
||||||
|
<dt>{% trans "Blocked by us:" %}</dt>
|
||||||
|
<dd>
|
||||||
|
{{ blocked_by_us.count }}
|
||||||
|
</dd>
|
||||||
|
</div>
|
||||||
|
</dl>
|
||||||
|
</section>
|
||||||
|
</div>
|
||||||
|
|
||||||
<section class="block content">
|
<section class="block content">
|
||||||
<h2 class="title is-4">{% trans "Activity" %}</h2>
|
<h2 class="title is-4">{% trans "Notes" %}</h2>
|
||||||
<dl>
|
<p>{{ server.notes }}</p>
|
||||||
<div class="is-flex">
|
|
||||||
<dt>{% trans "Users:" %}</dt>
|
|
||||||
<dd>
|
|
||||||
{{ users.count }}
|
|
||||||
{% if server.user_set.count %}(<a href="{% url 'settings-users' %}?server={{ server.id }}">{% trans "View all" %}</a>){% endif %}
|
|
||||||
</dd>
|
|
||||||
</div>
|
|
||||||
<div class="is-flex">
|
|
||||||
<dt>{% trans "Reports:" %}</dt>
|
|
||||||
<dd>
|
|
||||||
{{ reports.count }}
|
|
||||||
{% if reports.count %}(<a href="{% url 'settings-reports' %}?server={{ server.id }}">{% trans "View all" %}</a>){% endif %}
|
|
||||||
</dd>
|
|
||||||
</div>
|
|
||||||
<div class="is-flex">
|
|
||||||
<dt>{% trans "Followed by us:" %}</dt>
|
|
||||||
<dd>
|
|
||||||
{{ followed_by_us.count }}
|
|
||||||
</dd>
|
|
||||||
</div>
|
|
||||||
<div class="is-flex">
|
|
||||||
<dt>{% trans "Followed by them:" %}</dt>
|
|
||||||
<dd>
|
|
||||||
{{ followed_by_them.count }}
|
|
||||||
</dd>
|
|
||||||
</div>
|
|
||||||
<div class="is-flex">
|
|
||||||
<dt>{% trans "Blocked by us:" %}</dt>
|
|
||||||
<dd>
|
|
||||||
{{ blocked_by_us.count }}
|
|
||||||
</dd>
|
|
||||||
</div>
|
|
||||||
</dl>
|
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<section class="block content">
|
<section class="block content">
|
||||||
|
|
Loading…
Reference in a new issue