|
Server : Apache/2.4.62 System : FreeBSD fbsdweb2.web.rcn.net 14.1-RELEASE FreeBSD 14.1-RELEASE releng/14.1-n267679-10e31f0946d8 GENERIC amd64 User : www ( 80) PHP Version : 8.3.8 Disable Function : NONE Directory : /domains/irtiweb/CATS/modules/contacts/ |
Upload File : |
<?php /* $Id: ColdCallList.tpl 1948 2007-02-23 09:49:27Z will $ */ ?>
<?php TemplateUtility::printHeader('Contacts', array('js/sorttable.js', 'js/highlightrows.js')); ?>
<?php TemplateUtility::printHeaderBlock(); ?>
<?php TemplateUtility::printTabs($this->active); ?>
<div id="main">
<?php TemplateUtility::printQuickSearch(); ?>
<div id="contents">
<table>
<tr>
<td width="3%">
<img src="images/contact.gif" width="24" height="24" border="0" alt="Contacts" style="margin-top: 3px;" />
</td>
<td><h2>Contacts: Cold Call List</h2></td>
</tr>
</table>
<p class="note">Cold Call List (Only Contacts with Phone Numbers)</p>
<?php if (!empty($this->rs)): ?>
<table class="sortable" rules="all" onmouseover="javascript:trackTableHighlight(event)">
<tr>
<th align="left">Company</th>
<th align="left" nowrap="nowrap">First Name</th>
<th align="left" nowrap="nowrap">Last Name</th>
<th align="left">Title</th>
<th align="left" nowrap="nowrap">Work Phone</th>
</tr>
<?php foreach ($this->rs as $rowNumber => $data): ?>
<tr class="<?php TemplateUtility::printAlternatingRowClass($rowNumber); ?>">
<td valign="top" align="left"><?php $this->_($data['companyName']); ?></td>
<td valign="top" align="left"><?php $this->_($data['firstName']); ?></td>
<td valign="top" align="left"><?php $this->_($data['lastName']); ?></td>
<td valign="top" align="left"><?php $this->_($data['title']); ?></td>
<td valign="top" align="left"><?php $this->_($data['phoneWork']); ?></td>
</tr>
<?php endforeach; ?>
</table>
<?php endif; ?>
</div>
</div>
<?php TemplateUtility::printFooter(); ?>