diff options
author | Lukas Fleischer <lfleischer@archlinux.org> | 2016-10-17 15:34:21 +0200 |
---|---|---|
committer | Lukas Fleischer <lfleischer@archlinux.org> | 2016-10-17 15:34:21 +0200 |
commit | fdd932ff8d5e5899cfeae9a8b29011fa2cf9d439 (patch) | |
tree | 07afb8664e18e4d4fb479525b16db6edf026b72b /web/template/account_details.php | |
parent | b091fb77580d56dbdca6424f9065581945b8e815 (diff) | |
parent | c3f464f50fb35ffb7825b90437bd912051a994ee (diff) | |
download | aur-fdd932ff8d5e5899cfeae9a8b29011fa2cf9d439.tar.gz aur-fdd932ff8d5e5899cfeae9a8b29011fa2cf9d439.tar.xz |
Merge branch 'master' into maint
Diffstat (limited to 'web/template/account_details.php')
-rw-r--r-- | web/template/account_details.php | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/web/template/account_details.php b/web/template/account_details.php index 59a6a63b..024bd9c3 100644 --- a/web/template/account_details.php +++ b/web/template/account_details.php @@ -42,6 +42,10 @@ <td><?= htmlspecialchars($row["RealName"], ENT_QUOTES) ?></td> </tr> <tr> + <th><?= __("Homepage") . ":" ?></th> + <td><a href="<?= htmlspecialchars($row["Homepage"], ENT_QUOTES) ?>" rel="nofollow"><?= htmlspecialchars($row["Homepage"], ENT_QUOTES) ?></a></td> + </tr> + <tr> <th><?= __("IRC Nick") . ":" ?></th> <td><?= htmlspecialchars($row["IRCNick"], ENT_QUOTES) ?></td> </tr> @@ -55,6 +59,14 @@ <?= $row["InactivityTS"] ? __("Inactive since") . ' ' . date("Y-m-d H:i", $row["InactivityTS"]) : __("Active"); ?> </td> </tr> + <tr> + <th><?= __("Registration date:") ?></th> + <?php if ($row["RegistrationTS"]): ?> + <td><?= (new DateTime($row["RegistrationTS"]))->format('Y-m-d') ?></td> + <?php else: ?> + <td><?= __("unknown") ?></td> + <?php endif; ?> + </tr> <?php if (has_credential(CRED_ACCOUNT_LAST_LOGIN)): ?> <tr> <th><?= __("Last Login") . ":" ?></th> |