View remote profiles locally

Add a link to the profile on the real instance
This commit is contained in:
Bat
2018-06-13 18:48:37 +01:00
parent 51c598a0fc
commit 1c287c6dfe
3 changed files with 14 additions and 2 deletions
+4
View File
@@ -27,6 +27,10 @@
{% if is_self %}
<a href="edit" class="button inline-block">Edit your profile</a>
{% endif %}
{% if is_remote %}
<a class="inline-block button" href="{{ user.ap_url }}">Open on {{ instance_url }}</a>
{% endif %}
</div>
<div>
+5 -1
View File
@@ -22,6 +22,10 @@
<span class="badge">It is you</span>
{% endif %}
</h1>
{% if is_remote %}
<a class="inline-block button" href="{{ user.ap_url }}">Open on {{ instance_url }}</a>
{% endif %}
</div>
<h2>Followers</h2>
@@ -33,7 +37,7 @@
{% set follower_name = follower.username %}
{% endif %}
<div class="card">
<h3><a href="{{ follower.ap_url }}/">{{ follower_name }}</a> &mdash; @{{ follower.fqn }}</h3>
<h3><a href="/@/{{ follower.fqn }}/">{{ follower_name }}</a> &mdash; @{{ follower.fqn }}</h3>
<main><p>{{ follower.summary | safe }}</p></main>
</div>
{% endfor %}