cmc-sales/views/users/view_user.ctp

54 lines
1.8 KiB
Plaintext
Raw Normal View History

2011-03-15 23:51:43 -07:00
<?=$javascript->link('view_user'); ?>
<span id="userID" style="display: none;"><?=$user['User']['id']?></span>
<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']; ?>
&nbsp;
</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']; ?>
&nbsp;
</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']; ?>
&nbsp;
</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']); ?>
&nbsp;
</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']; ?>
&nbsp;
</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>
<? /* 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']);
}
else {
echo "No Enquiries for this User";
}
?>
</div>