mirror of
https://github.com/jointakahe/takahe.git
synced 2024-11-26 01:01:00 +00:00
Tweak UI when no posts found for remote identity (#83)
I’ve found the current copy confusing when viewing a remote identity.
This commit is contained in:
parent
ee9ac29cca
commit
a826ae18ea
1 changed files with 12 additions and 1 deletions
|
@ -82,7 +82,18 @@
|
||||||
{% for post in page_obj %}
|
{% for post in page_obj %}
|
||||||
{% include "activities/_post.html" %}
|
{% include "activities/_post.html" %}
|
||||||
{% empty %}
|
{% empty %}
|
||||||
<span class="empty">No posts yet.</a>
|
<span class="empty">
|
||||||
|
{% if identity.local %}
|
||||||
|
No posts yet.
|
||||||
|
{% else %}
|
||||||
|
No posts have been received/retrieved by this server yet.
|
||||||
|
|
||||||
|
{% if identity.profile_uri %}
|
||||||
|
You might find historical posts at
|
||||||
|
<a href="{{ identity.profile_uri }}">their original profile ➔</a>
|
||||||
|
{% endif %}
|
||||||
|
{% endif %}
|
||||||
|
</span>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
|
||||||
{% if page_obj.has_next %}
|
{% if page_obj.has_next %}
|
||||||
|
|
Loading…
Reference in a new issue