mirror of
https://git.sr.ht/~tsileo/microblog.pub
synced 2025-02-24 07:57:53 +01:00
Admin templates tweak
This commit is contained in:
parent
a1a9ec3f7c
commit
e28b988a26
@ -1,5 +1,10 @@
|
|||||||
{%- import "utils.html" as utils with context -%}
|
{%- import "utils.html" as utils with context -%}
|
||||||
{% extends "layout.html" %}
|
{% extends "layout.html" %}
|
||||||
|
|
||||||
|
{% block head %}
|
||||||
|
<title>{{ local_actor.display_name }} - Inbox</title>
|
||||||
|
{% endblock %}
|
||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
|
|
||||||
{% if show_filters %}
|
{% if show_filters %}
|
||||||
|
@ -1,5 +1,10 @@
|
|||||||
{%- import "utils.html" as utils with context -%}
|
{%- import "utils.html" as utils with context -%}
|
||||||
{% extends "layout.html" %}
|
{% extends "layout.html" %}
|
||||||
|
|
||||||
|
{% block head %}
|
||||||
|
<title>{{ local_actor.display_name }} - Outbox</title>
|
||||||
|
{% endblock %}
|
||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
|
|
||||||
{{ utils.display_box_filters("admin_outbox") }}
|
{{ utils.display_box_filters("admin_outbox") }}
|
||||||
|
@ -1,4 +1,9 @@
|
|||||||
{%- import "utils.html" as utils with context -%}
|
{%- import "utils.html" as utils with context -%}
|
||||||
|
|
||||||
|
{% block head %}
|
||||||
|
<title>{{ local_actor.display_name }} - {{ actor.display_name }}</title>
|
||||||
|
{% endblock %}
|
||||||
|
|
||||||
{% extends "layout.html" %}
|
{% extends "layout.html" %}
|
||||||
{% block content %}
|
{% block content %}
|
||||||
{{ utils.display_actor(actor, actors_metadata, with_details=True) }}
|
{{ utils.display_actor(actor, actors_metadata, with_details=True) }}
|
||||||
|
@ -1,5 +1,10 @@
|
|||||||
{%- import "utils.html" as utils with context -%}
|
{%- import "utils.html" as utils with context -%}
|
||||||
{% extends "layout.html" %}
|
{% extends "layout.html" %}
|
||||||
|
|
||||||
|
{% block head %}
|
||||||
|
<title>{{ local_actor.display_name }} - Stream</title>
|
||||||
|
{% endblock %}
|
||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
|
|
||||||
{% for inbox_object in stream %}
|
{% for inbox_object in stream %}
|
||||||
|
@ -19,7 +19,10 @@
|
|||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
|
|
||||||
|
{% if outbox_object %}
|
||||||
{% include "header.html" %}
|
{% include "header.html" %}
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
{% macro display_replies_tree(replies_tree_node) %}
|
{% macro display_replies_tree(replies_tree_node) %}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user