<div class="transactions index">
	<h2><?php echo __('Transactions'); ?></h2>
	<table cellpadding="0" cellspacing="0">
	<tr>
			<th><?php echo $this->Paginator->sort('id'); ?></th>
			<th><?php echo $this->Paginator->sort('courseId'); ?></th>
			<th><?php echo $this->Paginator->sort('courseTitle'); ?></th>
			<th><?php echo $this->Paginator->sort('courseName'); ?></th>
			<th><?php echo $this->Paginator->sort('startDate'); ?></th>
			<th><?php echo $this->Paginator->sort('endDate'); ?></th>
			<th><?php echo $this->Paginator->sort('totalUsd'); ?></th>
			<th><?php echo $this->Paginator->sort('totalFee'); ?></th>
			<th><?php echo $this->Paginator->sort('status'); ?></th>
			<th class="actions"><?php echo __('Actions'); ?></th>
	</tr>
	<?php foreach ($transactions as $transaction): ?>
	<tr>
		<td><?php echo h($transaction['Transaction']['id']); ?>&nbsp;</td>
		<td><?php echo h($transaction['Transaction']['courseId']); ?>&nbsp;</td>
		<td><?php echo h($transaction['Transaction']['courseTitle']); ?>&nbsp;</td>
		<td><?php echo h($transaction['Transaction']['courseName']); ?>&nbsp;</td>
		<td><?php echo h($transaction['Transaction']['startDate']); ?>&nbsp;</td>
		<td><?php echo h($transaction['Transaction']['endDate']); ?>&nbsp;</td>
		<td><?php echo h($transaction['Transaction']['totalUsd']); ?>&nbsp;</td>
		<td><?php echo h($transaction['Transaction']['totalFee']); ?>&nbsp;</td>
		<td><?php echo h($transaction['Transaction']['status']); ?>&nbsp;</td>
		<td class="actions">
			<?php echo $this->Html->link(__('View'), array('action' => 'view', $transaction['Transaction']['id'])); ?>
			<?php echo $this->Html->link(__('Edit'), array('action' => 'edit', $transaction['Transaction']['id'])); ?>
			<?php echo $this->Form->postLink(__('Delete'), array('action' => 'delete', $transaction['Transaction']['id']), null, __('Are you sure you want to delete # %s?', $transaction['Transaction']['id'])); ?>
		</td>
	</tr>
<?php endforeach; ?>
	</table>
	<p>
	<?php
	echo $this->Paginator->counter(array(
	'format' => __('Page {:page} of {:pages}, showing {:current} records out of {:count} total, starting on record {:start}, ending on {:end}')
	));
	?>	</p>
	<div class="paging">
	<?php
		echo $this->Paginator->prev('< ' . __('previous'), array(), null, array('class' => 'prev disabled'));
		echo $this->Paginator->numbers(array('separator' => ''));
		echo $this->Paginator->next(__('next') . ' >', array(), null, array('class' => 'next disabled'));
	?>
	</div>
</div>
