diff options
Diffstat (limited to 'templates/actor/profile.php')
| -rw-r--r-- | templates/actor/profile.php | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/templates/actor/profile.php b/templates/actor/profile.php index 3e1a11e..4e5f66a 100644 --- a/templates/actor/profile.php +++ b/templates/actor/profile.php @@ -23,6 +23,12 @@ $actorUser = UserAccount::findByLinkedActor($actor); <div class="pronouns"><?= htmlspecialchars($actor->pronouns) ?></div> <div class="handle">@<?= $actor->getFullHandle() ?></div> <div class="joinedDate"><?= sprintf(__('user.profile.createdAt'), format_datetime($actor->created)) ?></div> + <?php if ($actor->automated): ?> + <div class="inlinePill"> + <span class="pillIcon material-symbols person-off-outline"></span> + <span class="pillText"><?= __('user.profile.automated') ?></span> + </div> + <?php endif; ?> </div> <div class="profileMiniActions"> |
