aboutsummaryrefslogtreecommitdiffhomepage
path: root/templates/follow_requests_page.php
blob: f93601c340b569fafa7ef4f1b570af6d8d07da56 (plain)
1
2
3
4
5
6
7
8
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]);
    }
});