Skip to content

Commit

Permalink
AP users: followers/following UI page bug fixes for Follower migratio…
Browse files Browse the repository at this point in the history
…n to to/from

for #512
  • Loading branch information
snarfed committed Jun 8, 2023
1 parent ac5123e commit 68982e1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion templates/followers.html
@@ -1,6 +1,6 @@
{% extends "base.html" %}

{% block title %}{{ domain }}'s followers - Bridgy Fed{% endblock %}
{% block title %}{{ g.user.readable_or_key_id() }}'s followers - Bridgy Fed{% endblock %}

{% block content %}

Expand Down
4 changes: 2 additions & 2 deletions templates/following.html
@@ -1,6 +1,6 @@
{% extends "base.html" %}

{% block title %}{{ domain }}'s following - Bridgy Fed{% endblock %}
{% block title %}{{ g.user.readable_or_key_id() }}'s following - Bridgy Fed{% endblock %}

{% block content %}

Expand All @@ -16,7 +16,7 @@
<input id="follower-address" name="address" type="text" required
placeholder="@user@domain.social" alt="fediverse address"
value="{{ address or '' }}"></input>
<input name="me" type="hidden" value="https://{{ domain }}/"></input>
<input name="me" type="hidden" value="{{ g.user.web_url() }}"></input>
<button type="submit" class="btn btn-default">Follow</button>
</p>
</form>
Expand Down

0 comments on commit 68982e1

Please sign in to comment.