lib.itmens/journal/templates/user_item_list_base.html

38 lines
1.1 KiB
HTML
Raw Permalink Normal View History

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">
<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" %}
</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 %}
</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 %}
{% empty %}
2024-05-20 23:17:47 -04:00
<div>{% trans 'nothing so far.' %}</div>
{% endfor %}
2022-12-27 14:52:03 -05:00
</div>
{% include "_pagination.html" %}
</div>
2023-10-30 00:59:54 -04:00
{% block sidebar %}
{% include "_sidebar.html" with show_profile=1 %}
{% endblock %}
</main>
2023-06-09 03:01:17 -04:00
{% include "_footer.html" %}
</body>
2022-12-27 14:52:03 -05:00
</html>