Where is User Created Date Info?

Hello Everyone

As i recently change my panel from VestaCP to HestiaCP, i cannot see users created date info in HestiaCP when i logged in as Admin and see Users Records tab. Before in VestaCP there is an info about when the user is created (date).
How or where can i see users created date info?

HestiaCP v1.2.0 - Ubuntu 18.04

Don’t think it is possible… You can still find it in /usr/local/hestia/data/users/{user}/user.conf

Thanks. Yes, you are right. So then to display the date info in users tab, i did this:

Edit this template in hestiacp:
$ nano /usr/local/hestia/web/templates/admin/list_user.html

Add script under this line:
<div class="userlist-email"><b><?=__('Email')?>:</b> <?=$data[$key]['CONTACT']?></div>
with this script:
<div class="userlist-email">Created: <?=translate_date($data[$key]['DATE'])?></div>
Save and close the file.

And then created date info for users will show under users email info.

Yes, But during next update you changes will be lost currently we don’t changing any template files

1 Like