diff options
Diffstat (limited to 'templates/follow_requests_page.php')
| -rw-r--r-- | templates/follow_requests_page.php | 9 |
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 |
