blob: 2f49fcd466203688b8d39121bfa76f7d5b7cf377 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<?php if (isset($response)): ?>
<div class="pendingInfo">
<?= __("followRequests.$response") ?>
</div>
<?php else: ?>
<div class="pendingInfo">
<?= __('user.profile.pendingFollowsYou') ?>
<button class="primary" hx-post="/fragment/actor/<?= $subject->id ?>/acceptPending" hx-target="closest .pendingInfo"
hx-swap="outerHTML">
<?= __('followRequests.accept.action') ?>
</button>
<button class="secondary" hx-post="/fragment/actor/<?= $subject->id ?>/rejectPending"
hx-target="closest .pendingInfo" hx-swap="outerHTML">
<?= __('followRequests.reject.action') ?>
</button>
</div>
<?php endif; ?>
|