58 lines
1.9 KiB
PHP
58 lines
1.9 KiB
PHP
<div class="users view">
|
|
<h2><?php __('User: '.$user['User']['username'] );?></h2>
|
|
<dl><?php $i = 0; $class = ' class="altrow"';?>
|
|
<dt<?php if ($i % 2 == 0) echo $class;?>><?php __('Username'); ?></dt>
|
|
<dd<?php if ($i++ % 2 == 0) echo $class;?>>
|
|
<?php echo $user['User']['username']; ?>
|
|
|
|
</dd>
|
|
<dt<?php if ($i % 2 == 0) echo $class;?>><?php __('First Name'); ?></dt>
|
|
<dd<?php if ($i++ % 2 == 0) echo $class;?>>
|
|
<?php echo $user['User']['first_name']; ?>
|
|
|
|
</dd>
|
|
<dt<?php if ($i % 2 == 0) echo $class;?>><?php __('Last Name'); ?></dt>
|
|
<dd<?php if ($i++ % 2 == 0) echo $class;?>>
|
|
<?php echo $user['User']['last_name']; ?>
|
|
|
|
</dd>
|
|
<dt<?php if ($i % 2 == 0) echo $class;?>><?php __('Email'); ?></dt>
|
|
<dd<?php if ($i++ % 2 == 0) echo $class;?>>
|
|
<?php echo $html->link($user['User']['email'], 'mailto:'.$user['User']['email']); ?>
|
|
|
|
</dd>
|
|
<dt<?php if ($i % 2 == 0) echo $class;?>><?php __('Job Title'); ?></dt>
|
|
<dd<?php if ($i++ % 2 == 0) echo $class;?>>
|
|
<?php echo $user['User']['job_title']; ?>
|
|
|
|
</dd>
|
|
</dl>
|
|
</div>
|
|
<div class="related">
|
|
<h3><?php __('Enquiries Assigned to this User');?></h3>
|
|
<? /* If there are enquiries for this user, render the enquiries table passing the $enquiries array */ ?>
|
|
<?php if (!empty($user['Enquiry'])) {
|
|
echo $this->element('enquiry_table', $enquiries);
|
|
}
|
|
else {
|
|
echo "No Enquiries for this User";
|
|
}
|
|
?>
|
|
|
|
|
|
<div class="actions">
|
|
<ul>
|
|
<li><?php echo $html->link(__('New Enquiry', true), array('controller'=> 'enquiries', 'action'=>'add'));?> </li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<div class="related">
|
|
<h3>
|
|
Emails From this User<?php echo $html->image('internet-mail.png'); ?>
|
|
</h3>
|
|
<?php echo $this->element('email_table_ajax', array('emails' => $emails)); ?>
|
|
<?php //echo $this->element('email_table_ajax', $enquiry, array('cache'=>'+1 day')); ?>
|
|
</div>
|