Your IP : 216.73.216.131


Current Path : /home/lejardintz/www/administrator/components/com_komento/views/mailq/tmpl/
Upload File :
Current File : /home/lejardintz/www/administrator/components/com_komento/views/mailq/tmpl/default_bootstrap.php

<?php
/**
 * @package		Komento
 * @copyright	Copyright (C) 2012 Stack Ideas Private Limited. All rights reserved.
 * @license		GNU/GPL, see LICENSE.php
 *
 * Komento is free software. This version may have been modified pursuant
 * to the GNU General Public License, and as distributed it includes or
 * is derivative of works licensed under the GNU General Public License or
 * other free or open source software licenses.
 * See COPYRIGHT.php for copyright notices and details.
 */

defined('_JEXEC') or die('Restricted access'); ?>
<div class="row-fluid">
	<div class="span12">
		<table class="table table-striped" cellspacing="1">
			<thead>
				<th width="2%" class="title" style="text-align:center;">
					<input type="checkbox" name="toggle" value="" onclick="Joomla.checkAll(this);" />
				</th>
				<th class="title" style="text-align:left;" width="15%">
					<?php echo JText::_( 'COM_KOMENTO_RECIPIENT' ); ?>
				</th>
				<th class="title" style="text-align:left;">
					<?php echo JText::_( 'COM_KOMENTO_SUBJECT' ); ?>
				</th>
				<th class="title" width="1%" style="text-align:center;">
					<?php echo JText::_( 'COM_KOMENTO_STATE' ); ?>
				</th>
				<th class="title" width="10%" style="text-align:center;">
					<?php echo JText::_( 'COM_KOMENTO_CREATED' ); ?>
				</th>
				<th class="title" width="5%" style="text-align:center;">
					<?php echo JText::_( 'COM_KOMENTO_TYPE' ); ?>
				</th>
				<th class="title" width="1%" style="text-align:center;">
					<?php echo JText::_( 'COM_KOMENTO_ID' ); ?>
				</th>
			</thead>
			<tbody>
			<?php if( $this->items ){ ?>
				<?php for ($i=0, $n=count($this->items); $i<$n; $i++){ ?>
				<tr>
					<td class="center">
						<?php echo JHTML::_( 'grid.id' , $i , $this->items[ $i ]->id ); ?>
					</td>
					<td>
						<a href="mailto:<?php echo $this->escape( $this->items[ $i ]->recipient ); ?>" target="_blank"><?php echo $this->items[ $i ]->recipient; ?></a>
					</td>
					<td>
						<a href="javascript:void(0);" class="preview-mail" data-id="<?php echo $this->items[ $i ]->id;?>"><?php echo $this->items[ $i ]->subject; ?></a>
					</td>
					<td class="center">
						<?php echo $this->items[ $i ]->status; ?>
					</td>
					<td class="center">
						<?php echo $this->items[ $i ]->created; ?>
					</td>
					<td style="text-align:center;">
						<?php echo $this->items[ $i ]->type; ?>
					</td>
					<td class="center">
						<?php echo $this->items[ $i ]->id; ?>
					</td>
				</tr>
				<?php } ?>
			<?php } else { ?>
				<tr>
					<td colspan="8" class="center">
						<?php echo JText::_( 'COM_KOMENTO_NO_PENDING_EMAILS_YET' );?>
					</td>
				</tr>
			<?php } ?>
			</tbody>
			<tfoot>
				<tr>
					<td colspan="8">
						<?php echo $this->pagination->getListFooter(); ?>
					</td>
				</tr>
			</tfoot>
		</table>
	</div>
</div>