diff options
author | Andrew Godwin | 2022-11-05 22:49:25 -0600 |
---|---|---|
committer | Andrew Godwin | 2022-11-05 22:49:25 -0600 |
commit | a2404e01cdbeef2ba332e147a5f2f1ca0a0310d7 (patch) | |
tree | 9aa1ae2ffad20a7afe8eac8cbe99ab9a53dcc0ca /templates | |
parent | 56de2362a01089c8a5ca3c6e1affcade00ffdfce (diff) | |
download | takahe-a2404e01cdbeef2ba332e147a5f2f1ca0a0310d7.tar.gz takahe-a2404e01cdbeef2ba332e147a5f2f1ca0a0310d7.tar.bz2 takahe-a2404e01cdbeef2ba332e147a5f2f1ca0a0310d7.zip |
Queuing system and lazy profile fetch
Diffstat (limited to 'templates')
-rw-r--r-- | templates/identity/view.html | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/templates/identity/view.html b/templates/identity/view.html index deb7ae5..2a82478 100644 --- a/templates/identity/view.html +++ b/templates/identity/view.html @@ -14,10 +14,16 @@ </h1> {% if not identity.local %} - <p class="system-note"> - This user is a member of another server. - <a href="{{ identity.profile_uri }}">See their original profile</a> - </p> + {% if not identity.actor_uri %} + <p class="system-note"> + The system is still fetching this profile. Refresh to see updates. + </p> + {% else %} + <p class="system-note"> + This is a member of another server. + <a href="{{ identity.profile_uri }}">See their original profile</a> + </p> + {% endif %} {% endif %} {% for status in statuses %} |