2022-12-27 14:52:03 -05:00
|
|
|
{% load static %}
|
|
|
|
{% load i18n %}
|
|
|
|
{% load l10n %}
|
|
|
|
{% load mastodon %}
|
|
|
|
{% load thumb %}
|
2025-02-06 19:17:53 +00:00
|
|
|
{% get_current_language as LANGUAGE_CODE %}
|
2022-12-27 14:52:03 -05:00
|
|
|
<!DOCTYPE html>
|
2025-02-06 19:17:53 +00:00
|
|
|
<html lang="{{ LANGUAGE_CODE }}" class="classic-page">
|
2023-05-20 11:01:18 -04:00
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
2023-08-13 23:11:12 -04:00
|
|
|
{% block title %}<title>{{ site_name }} - {{ identity.display_name }}</title>{% endblock %}
|
2024-01-07 17:24:34 -05:00
|
|
|
{% include "common_libs.html" %}
|
2023-05-20 11:01:18 -04:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
{% include "_header.html" %}
|
|
|
|
<main>
|
|
|
|
<div class="grid__main">
|
2024-06-04 16:51:51 -04:00
|
|
|
<h5>
|
2023-08-13 23:11:12 -04:00
|
|
|
{% block head %}{{ identity.display_name }}{% endblock %}
|
2023-05-20 11:01:18 -04:00
|
|
|
</h5>
|
|
|
|
<div>
|
|
|
|
{% for member in members %}
|
2023-06-09 02:23:15 -04:00
|
|
|
{% include "_list_item.html" with item=member.item mark=member.mark hide_category=True %}
|
2023-05-20 11:01:18 -04:00
|
|
|
{% empty %}
|
2024-05-20 23:17:47 -04:00
|
|
|
<div>{% trans 'nothing so far.' %}</div>
|
2023-05-20 11:01:18 -04:00
|
|
|
{% endfor %}
|
2022-12-27 14:52:03 -05:00
|
|
|
</div>
|
2023-06-16 17:47:22 -04:00
|
|
|
{% include "_pagination.html" %}
|
2023-05-20 11:01:18 -04:00
|
|
|
</div>
|
2023-10-30 00:59:54 -04:00
|
|
|
{% block sidebar %}
|
|
|
|
{% include "_sidebar.html" with show_profile=1 %}
|
|
|
|
{% endblock %}
|
2023-05-20 11:01:18 -04:00
|
|
|
</main>
|
2023-06-09 03:01:17 -04:00
|
|
|
{% include "_footer.html" %}
|
2023-05-20 11:01:18 -04:00
|
|
|
</body>
|
2022-12-27 14:52:03 -05:00
|
|
|
</html>
|