summaryrefslogtreecommitdiff
path: root/templates
diff options
context:
space:
mode:
authorBirte Kristina Friesel <derf@finalrewind.org>2023-07-18 15:47:45 +0200
committerBirte Kristina Friesel <derf@finalrewind.org>2023-07-18 15:47:45 +0200
commitfef9ebe0b20623c4e21cf720ea379338e6ef978e (patch)
tree549094779c7f73e62b2179ac443efb8ac10cf3e5 /templates
parentc81d471728888794c012a74fbb2c85b235dcfc09 (diff)
followee list: show if accounts are following back1.33.3
Diffstat (limited to 'templates')
-rw-r--r--templates/social_list.html.ep10
1 files changed, 9 insertions, 1 deletions
diff --git a/templates/social_list.html.ep b/templates/social_list.html.ep
index 1a3e441..ef47636 100644
--- a/templates/social_list.html.ep
+++ b/templates/social_list.html.ep
@@ -130,7 +130,10 @@
</div>
</div>
<div class="row center-align">
- <div class="col s12">
+ <div class="col s6">
+ <i class="material-icons">group</i><br/> Folgt dir
+ </div>
+ <div class="col s6">
<i class="material-icons">remove</i><br/> Nicht mehr folgen
</div>
</div>
@@ -231,6 +234,11 @@
% }
% elsif ($type eq 'follows') {
<td class="right-align">
+ % if ($entry->{following_back}) {
+ <i class="material-icons" aria-label="ihr folgt euch gegenseitig">group</i>
+ % }
+ </td>
+ <td class="right-align">
<button class="btn-flat waves-effect waves-light" type="submit" name="unfollow" value="<%= $entry->{id} %>">
<i class="material-icons" aria-label="entfolgen">remove</i>
</button>