cmc-sales/views/principle_contacts/view.ctp
Karl Cordes 4347aee5f0 Changes
2009-11-04 17:12:12 +11:00

64 lines
2.7 KiB
PHP
Executable file

<div class="principleContacts view">
<h2><?php __('PrincipleContact');?></h2>
<dl><?php $i = 0; $class = ' class="altrow"';?>
<dt<?php if ($i % 2 == 0) echo $class;?>><?php __('Principle Id'); ?></dt>
<dd<?php if ($i++ % 2 == 0) echo $class;?>>
<?php echo $principleContact['PrincipleContact']['principle_id']; ?>
&nbsp;
</dd>
<dt<?php if ($i % 2 == 0) echo $class;?>><?php __('Id'); ?></dt>
<dd<?php if ($i++ % 2 == 0) echo $class;?>>
<?php echo $principleContact['PrincipleContact']['id']; ?>
&nbsp;
</dd>
<dt<?php if ($i % 2 == 0) echo $class;?>><?php __('Name'); ?></dt>
<dd<?php if ($i++ % 2 == 0) echo $class;?>>
<?php echo $principleContact['PrincipleContact']['name']; ?>
&nbsp;
</dd>
<dt<?php if ($i % 2 == 0) echo $class;?>><?php __('First Name'); ?></dt>
<dd<?php if ($i++ % 2 == 0) echo $class;?>>
<?php echo $principleContact['PrincipleContact']['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 $principleContact['PrincipleContact']['last_name']; ?>
&nbsp;
</dd>
<dt<?php if ($i % 2 == 0) echo $class;?>><?php __('Job Title'); ?></dt>
<dd<?php if ($i++ % 2 == 0) echo $class;?>>
<?php echo $principleContact['PrincipleContact']['job_title']; ?>
&nbsp;
</dd>
<dt<?php if ($i % 2 == 0) echo $class;?>><?php __('Email'); ?></dt>
<dd<?php if ($i++ % 2 == 0) echo $class;?>>
<?php echo $principleContact['PrincipleContact']['email']; ?>
&nbsp;
</dd>
<dt<?php if ($i % 2 == 0) echo $class;?>><?php __('Phone'); ?></dt>
<dd<?php if ($i++ % 2 == 0) echo $class;?>>
<?php echo $principleContact['PrincipleContact']['phone']; ?>
&nbsp;
</dd>
<dt<?php if ($i % 2 == 0) echo $class;?>><?php __('Fax'); ?></dt>
<dd<?php if ($i++ % 2 == 0) echo $class;?>>
<?php echo $principleContact['PrincipleContact']['fax']; ?>
&nbsp;
</dd>
<dt<?php if ($i % 2 == 0) echo $class;?>><?php __('Notes'); ?></dt>
<dd<?php if ($i++ % 2 == 0) echo $class;?>>
<?php echo $principleContact['PrincipleContact']['notes']; ?>
&nbsp;
</dd>
</dl>
</div>
<div class="actions">
<ul>
<li><?php echo $html->link(__('Edit PrincipleContact', true), array('action'=>'edit', $principleContact['PrincipleContact']['id'])); ?> </li>
<li><?php echo $html->link(__('Delete PrincipleContact', true), array('action'=>'delete', $principleContact['PrincipleContact']['id']), null, sprintf(__('Are you sure you want to delete # %s?', true), $principleContact['PrincipleContact']['id'])); ?> </li>
<li><?php echo $html->link(__('List PrincipleContacts', true), array('action'=>'index')); ?> </li>
<li><?php echo $html->link(__('New PrincipleContact', true), array('action'=>'add')); ?> </li>
</ul>
</div>