25 lines
871 B
Plaintext
25 lines
871 B
Plaintext
|
|
<div class="principleContacts form">
|
||
|
|
<?php echo $form->create('PrincipleContact');?>
|
||
|
|
<fieldset>
|
||
|
|
<legend><?php __('Edit PrincipleContact');?></legend>
|
||
|
|
<?php
|
||
|
|
echo $form->input('principle_id');
|
||
|
|
echo $form->input('id');
|
||
|
|
echo $form->input('first_name');
|
||
|
|
echo $form->input('last_name');
|
||
|
|
echo $form->input('job_title');
|
||
|
|
echo $form->input('email');
|
||
|
|
echo $form->input('phone');
|
||
|
|
echo $form->input('fax');
|
||
|
|
echo $form->input('notes');
|
||
|
|
?>
|
||
|
|
</fieldset>
|
||
|
|
<?php echo $form->end('Submit');?>
|
||
|
|
</div>
|
||
|
|
<div class="actions">
|
||
|
|
<ul>
|
||
|
|
<li><?php echo $html->link(__('Delete', true), array('action'=>'delete', $form->value('PrincipleContact.id')), null, sprintf(__('Are you sure you want to delete # %s?', true), $form->value('PrincipleContact.id'))); ?></li>
|
||
|
|
<li><?php echo $html->link(__('List PrincipleContacts', true), array('action'=>'index'));?></li>
|
||
|
|
</ul>
|
||
|
|
</div>
|