Tweak/improve admin

This commit is contained in:
Thomas Sileo 2022-07-14 20:05:36 +02:00
parent 426669d870
commit 8dc0e1877b
4 changed files with 11 additions and 4 deletions

View file

@ -14,6 +14,12 @@
{% endmacro %}
{% if not inbox %}
<div class="box">
<p>Nothing to see yet, <a href="{{ url_for("get_lookup") }}">start following people in the lookup section</a>.</p>
</div>
{% endif %}
{% for inbox_object in inbox %}
{% if inbox_object.ap_type == "Announce" %}
{{ actor_action(inbox_object, "shared") }}

View file

@ -45,7 +45,7 @@
</div>
<footer class="footer">
Powered by <a href="https://docs.microblog.pub">microblog.pub</a> <small class="microblogpub-version"><code>{{ microblogpub_version }}</code></small> and the <a href="https://activitypub.rocks/">ActivityPub</a> protocol
Powered by <a href="https://docs.microblog.pub">microblog.pub</a> <small class="microblogpub-version"><code>{{ microblogpub_version }}</code></small> and the <a href="https://activitypub.rocks/">ActivityPub</a> protocol. <a href="{{ url_for("login") }}">Admin</a>.
</footer>
</body>
</html>