Added primary contact column to user view
This commit is contained in:
parent
ff47f0a413
commit
ef536a285b
|
|
@ -7,6 +7,7 @@
|
|||
<th><?php echo __('phone');?></th>
|
||||
<th><?php echo __('fax');?></th>
|
||||
<th><?php echo __('notes');?></th>
|
||||
<th>Primary Contact</th>
|
||||
<th class="actions"><?php __('Actions');?></th>
|
||||
</tr>
|
||||
<?php
|
||||
|
|
@ -36,7 +37,12 @@
|
|||
<td>
|
||||
<?php echo $principleContact['PrincipleContact']['notes']; ?>
|
||||
</td>
|
||||
<td class="actions">
|
||||
<td>
|
||||
<?php if($principleContact['PrincipleContact']['primary_contact']) {
|
||||
echo "Yes";
|
||||
} ?>
|
||||
</td>
|
||||
<td class="actions">
|
||||
<button id="<?=$principleContact['PrincipleContact']['id']?>" class="ViewEditButton">View/Edit</button>
|
||||
|
||||
</td>
|
||||
|
|
|
|||
Loading…
Reference in a new issue