2011-03-15 23:51:43 -07:00
|
|
|
<?=$javascript->link('view_user'); ?>
|
|
|
|
|
|
|
|
|
|
<span id="userID" style="display: none;"><?=$user['User']['id']?></span>
|
|
|
|
|
|
2011-03-05 21:27:20 -08:00
|
|
|
<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>
|
2011-03-15 23:51:43 -07:00
|
|
|
<button id="show" class="showHide">Show</button>
|
|
|
|
|
<button id="hide" class="showHide">Hide</button>
|
|
|
|
|
|
|
|
|
|
<div id="enquiryTable">
|
|
|
|
|
<div id="ajaxLoad" style="display:none;"><?php echo $html->image('ajax-loader.gif'); ?></div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
2011-03-05 21:27:20 -08:00
|
|
|
<? /* If there are enquiries for this user, render the enquiries table passing the $enquiries array */ ?>
|
|
|
|
|
<?php if (!empty($user['Enquiry'])) {
|
2011-03-15 23:51:43 -07:00
|
|
|
//echo $this->element('enquiry_table', $user['Enquiry']);
|
2011-03-05 21:27:20 -08:00
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
echo "No Enquiries for this User";
|
|
|
|
|
}
|
|
|
|
|
?>
|
|
|
|
|
</div>
|