51 lines
1.7 KiB
PHTML
51 lines
1.7 KiB
PHTML
<?php
|
|
$this->headTitle($this->config->title->site);
|
|
$this->headTitle('My account');
|
|
$this->headTitle()->setSeparator(' - ');
|
|
?>
|
|
<div class="row">
|
|
<div class="span3">
|
|
<div class="well sidebar-nav">
|
|
<?= $this->partial('account/left.phtml'); ?>
|
|
</div><!--/.well -->
|
|
</div><!--/span-->
|
|
<div class="span9">
|
|
<h3>Account</h3>
|
|
<hr />
|
|
<?php if(!empty($this->info)) {?>
|
|
<dl class="dl-horizontal">
|
|
<dt>Gravatar</dt>
|
|
<dd><img src="<?= $this->avatar ?>" class="img-polaroid"></dd>
|
|
</dl>
|
|
<dl class="dl-horizontal">
|
|
<dt>Username</dt>
|
|
<dd><?php echo $this->info['username'] ?></dd>
|
|
</dl>
|
|
<dl class="dl-horizontal">
|
|
<dt>Email</dt>
|
|
<dd><?php echo $this->info['email'] ?></dd>
|
|
</dl>
|
|
<dl class="dl-horizontal">
|
|
<dt>Real Name</dt>
|
|
<dd><?php echo $this->info['realname'] ?></dd>
|
|
</dl>
|
|
<dl class="dl-horizontal">
|
|
<dt>Organization</dt>
|
|
<dd><?php echo $this->info['unit'] ?></dd>
|
|
</dl>
|
|
<dl class="dl-horizontal">
|
|
<dt>Fund</dt>
|
|
<dd><?php echo $this->info['project_title'] ?></dd>
|
|
</dl>
|
|
<dl class="dl-horizontal">
|
|
<dt>Register date</dt>
|
|
<dd><?php echo date("Y-m-d H:i",strtotime($this->info['ts_created'])) ?></dd>
|
|
</dl>
|
|
<dl class="dl-horizontal">
|
|
<dt>Last login</dt>
|
|
<dd><?php echo date("Y-m-d H:i",strtotime($this->info['ts_last_login'])) ?></dd>
|
|
</dl>
|
|
<?php } ?>
|
|
</div><!--/span-->
|
|
</div><!--/row-->
|