aboutsummaryrefslogtreecommitdiffhomepage
path: root/templates/follow_requests_page.php
diff options
context:
space:
mode:
authorwinter2025-01-16 20:21:42 +0000
committerwinter2025-01-16 20:21:42 +0000
commitb1d6fbc4d740324d96d7fe2677fb15b9b59d20ea (patch)
treeae2c996cc6a42b3a42437a7ec8812cd184644817 /templates/follow_requests_page.php
parent8de5608976dc8a73a400267601acb4c8e127de5a (diff)
follow requests
Diffstat (limited to 'templates/follow_requests_page.php')
-rw-r--r--templates/follow_requests_page.php9
1 files changed, 9 insertions, 0 deletions
diff --git a/templates/follow_requests_page.php b/templates/follow_requests_page.php
new file mode 100644
index 0000000..f93601c
--- /dev/null
+++ b/templates/follow_requests_page.php
@@ -0,0 +1,9 @@
+<?php call_template('skeleton', ['pageTitle' => __('followRequests.pageTitle')], function () {
+ global $actors;
+ if (count($actors) == 0) {
+ call_template('placeholder_text');
+ }
+ foreach ($actors as $actor) {
+ call_template('actor_profile', ['actor' => $actor, 'addLink' => true]);
+ }
+}); \ No newline at end of file