mirror of
https://git.sr.ht/~tsileo/microblog.pub
synced 2024-11-15 11:14:28 +00:00
Fix the following page
This commit is contained in:
parent
648e385c49
commit
a841efc9e8
1 changed files with 3 additions and 3 deletions
|
@ -8,12 +8,12 @@
|
||||||
{% include "header.html" %}
|
{% include "header.html" %}
|
||||||
|
|
||||||
<div id="following">
|
<div id="following">
|
||||||
{% for (follow_id, followed) in following_data %}
|
{% for follow in following_data %}
|
||||||
{% if session.logged_in %}
|
{% if session.logged_in %}
|
||||||
<div style="margin-left:90px;padding-bottom:5px;margin-bottom:15px;">
|
<div style="margin-left:90px;padding-bottom:5px;margin-bottom:15px;">
|
||||||
<form action="/api/undo" class="action-form" method="POST">
|
<form action="/api/undo" class="action-form" method="POST">
|
||||||
<input type="hidden" name="redirect" value="{{ request.path }}"/>
|
<input type="hidden" name="redirect" value="{{ request.path }}"/>
|
||||||
<input type="hidden" name="id" value="{{ follow_id }}"/>
|
<input type="hidden" name="id" value="{{ follow.id }}"/>
|
||||||
<input type="hidden" name="csrf_token" value="{{ csrf_token() }}"/>
|
<input type="hidden" name="csrf_token" value="{{ csrf_token() }}"/>
|
||||||
<button type="submit" class="bar-item">unfollow</button>
|
<button type="submit" class="bar-item">unfollow</button>
|
||||||
</form>
|
</form>
|
||||||
|
@ -21,7 +21,7 @@
|
||||||
|
|
||||||
{% endif %}
|
{% endif %}
|
||||||
<div style="height: 100px;">
|
<div style="height: 100px;">
|
||||||
{{ utils.display_actor_inline(followed, size=80) }}
|
{{ utils.display_actor_inline(follow, size=80) }}
|
||||||
</div>
|
</div>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
{{ utils.display_pagination(older_than, newer_than) }}
|
{{ utils.display_pagination(older_than, newer_than) }}
|
||||||
|
|
Loading…
Reference in a new issue