<div class="subscriptions index">
	<h2><?php echo __('Subscriptions'); ?></h2>
	<table cellpadding="0" cellspacing="0">
	<thead>
	<tr>
			<th><?php echo $this->Paginator->sort('id'); ?></th>
			<th><?php echo $this->Paginator->sort('profile_id'); ?></th>
			<th><?php echo $this->Paginator->sort('subscriptionId'); ?></th>
			<th><?php echo $this->Paginator->sort('customerId'); ?></th>
			<th><?php echo $this->Paginator->sort('startDate'); ?></th>
			<th><?php echo $this->Paginator->sort('endDate'); ?></th>
			<th><?php echo $this->Paginator->sort('invoice_end_date'); ?></th>
			<th><?php echo $this->Paginator->sort('network_id'); ?></th>
			<th><?php echo $this->Paginator->sort('product_id'); ?></th>
			<th><?php echo $this->Paginator->sort('userprofile'); ?></th>
			<th><?php echo $this->Paginator->sort('status'); ?></th>
			<th><?php echo $this->Paginator->sort('auto_renew'); ?></th>
			<th><?php echo $this->Paginator->sort('created'); ?></th>
			<th><?php echo $this->Paginator->sort('modified'); ?></th>
			<th class="actions"><?php echo __('Actions'); ?></th>
	</tr>
	</thead>
	<tbody>
	<?php foreach ($subscriptions as $subscription): ?>
	<tr>
		<td><?php echo h($subscription['Subscription']['id']); ?>&nbsp;</td>
		<td>
			<?php echo $this->Html->link($subscription['Profile']['id'], array('controller' => 'profiles', 'action' => 'view', $subscription['Profile']['id'])); ?>
		</td>
		<td><?php echo h($subscription['Subscription']['subscriptionId']); ?>&nbsp;</td>
		<td><?php echo h($subscription['Subscription']['customerId']); ?>&nbsp;</td>
		<td><?php echo h($subscription['Subscription']['startDate']); ?>&nbsp;</td>
		<td><?php echo h($subscription['Subscription']['endDate']); ?>&nbsp;</td>
		<td><?php echo h($subscription['Subscription']['invoice_end_date']); ?>&nbsp;</td>
		<td>
			<?php echo $this->Html->link($subscription['Network']['title'], array('controller' => 'networks', 'action' => 'view', $subscription['Network']['id'])); ?>
		</td>
		<td>
			<?php echo $this->Html->link($subscription['Product']['name'], array('controller' => 'products', 'action' => 'view', $subscription['Product']['id'])); ?>
		</td>
		<td><?php echo h($subscription['Subscription']['userprofile']); ?>&nbsp;</td>
		<td><?php echo h($subscription['Subscription']['status']); ?>&nbsp;</td>
		<td><?php echo h($subscription['Subscription']['auto_renew']); ?>&nbsp;</td>
		<td><?php echo h($subscription['Subscription']['created']); ?>&nbsp;</td>
		<td><?php echo h($subscription['Subscription']['modified']); ?>&nbsp;</td>
		<td class="actions">
			<?php echo $this->Html->link(__('View'), array('action' => 'view', $subscription['Subscription']['id'])); ?>
			<?php echo $this->Html->link(__('Edit'), array('action' => 'edit', $subscription['Subscription']['id'])); ?>
			<?php echo $this->Form->postLink(__('Delete'), array('action' => 'delete', $subscription['Subscription']['id']), array('confirm' => __('Are you sure you want to delete # %s?', $subscription['Subscription']['id']))); ?>
		</td>
	</tr>
<?php endforeach; ?>
	</tbody>
	</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>
<div class="actions">
	<h3><?php echo __('Actions'); ?></h3>
	<ul>
		<li><?php echo $this->Html->link(__('New Subscription'), array('action' => 'add')); ?></li>
		<li><?php echo $this->Html->link(__('List Profiles'), array('controller' => 'profiles', 'action' => 'index')); ?> </li>
		<li><?php echo $this->Html->link(__('New Profile'), array('controller' => 'profiles', 'action' => 'add')); ?> </li>
		<li><?php echo $this->Html->link(__('List Networks'), array('controller' => 'networks', 'action' => 'index')); ?> </li>
		<li><?php echo $this->Html->link(__('New Network'), array('controller' => 'networks', 'action' => 'add')); ?> </li>
		<li><?php echo $this->Html->link(__('List Products'), array('controller' => 'products', 'action' => 'index')); ?> </li>
		<li><?php echo $this->Html->link(__('New Product'), array('controller' => 'products', 'action' => 'add')); ?> </li>
		<li><?php echo $this->Html->link(__('List Invoices'), array('controller' => 'invoices', 'action' => 'index')); ?> </li>
		<li><?php echo $this->Html->link(__('New Invoice'), array('controller' => 'invoices', 'action' => 'add')); ?> </li>
	</ul>
</div>
