diff options
author | Johannes Löthberg <johannes@kyriasis.com> | 2016-08-11 20:37:15 +0200 |
---|---|---|
committer | Johannes Löthberg <johannes@kyriasis.com> | 2016-08-11 20:38:01 +0200 |
commit | f1a0f4a8f7549c6937663b19e176e662c715c38e (patch) | |
tree | 9d151fe17b0d493ea579fa3bcdc15b4f020d2113 | |
parent | 435b5fc9024bff261d18456cd6628966eab8452f (diff) | |
download | aurweb-f1a0f4a8f7549c6937663b19e176e662c715c38e.tar.xz |
Display registration date on account details page
Signed-off-by: Johannes Löthberg <johannes@kyriasis.com>
-rw-r--r-- | web/template/account_details.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/web/template/account_details.php b/web/template/account_details.php index 8b76382..c34e65b 100644 --- a/web/template/account_details.php +++ b/web/template/account_details.php @@ -59,6 +59,10 @@ <?= $row["InactivityTS"] ? __("Inactive since") . ' ' . date("Y-m-d H:i", $row["InactivityTS"]) : __("Active"); ?> </td> </tr> + <tr> + <th><?= __("Registration date:") ?></th> + <td><?= date("Y-m-d", $row["RegistrationTS"]) ?></td> + </tr> <?php if (has_credential(CRED_ACCOUNT_LAST_LOGIN)): ?> <tr> <th><?= __("Last Login") . ":" ?></th> |