Subversion Repositories SmartDukaan

Rev

Rev 13532 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 13532 Rev 13558
Line 7... Line 7...
7
			<table cellpadding="0" cellspacing="0" class="table table-striped">
7
			<table cellpadding="0" cellspacing="0" class="table table-striped">
8
			<tr>
8
			<tr>
9
					<th><?php echo $this->Paginator->sort('id'); ?></th>
9
					<th><?php echo $this->Paginator->sort('id'); ?></th>
10
					<th><?php echo $this->Paginator->sort('name'); ?></th>
10
					<th><?php echo $this->Paginator->sort('name'); ?></th>
11
					<th><?php echo $this->Paginator->sort('status'); ?></th>
11
					<th><?php echo $this->Paginator->sort('status'); ?></th>
-
 
12
					<th><?php echo $this->Paginator->sort('affid_param'); ?></th>
12
					<th><?php echo $this->Paginator->sort('affiliate_id'); ?></th>
13
					<th><?php echo $this->Paginator->sort('affiliate_id'); ?></th>
13
					<th><?php echo $this->Paginator->sort('created'); ?></th>
14
					<th><?php echo $this->Paginator->sort('sub_tag_param'); ?></th>
14
					<th><?php echo $this->Paginator->sort('modified'); ?></th>
-
 
15
					<th class="actions"><?php echo __('Actions'); ?></th>
15
					<th class="actions"><?php echo __('Actions'); ?></th>
16
			</tr>
16
			</tr>
17
			<?php foreach ($stores as $store): ?>
17
			<?php foreach ($stores as $store): ?>
18
			<tr>
18
			<tr>
19
				<td><?php echo h($store['Store']['id']); ?>&nbsp;</td>
19
				<td><?php echo h($store['Store']['id']); ?>&nbsp;</td>
20
				<td><?php echo h($store['Store']['name']); ?>&nbsp;</td>
20
				<td><?php echo h($store['Store']['name']); ?>&nbsp;</td>
21
				<td><?php echo h($store['Store']['status']); ?>&nbsp;</td>
21
				<td><?php echo h($store['Store']['status']); ?>&nbsp;</td>
-
 
22
				<td><?php echo h($store['Store']['affid_param']); ?>&nbsp;</td>
22
				<td><?php echo h($store['Store']['affiliate_id']); ?>&nbsp;</td>
23
				<td><?php echo h($store['Store']['affiliate_id']); ?>&nbsp;</td>
23
				<td><?php echo h($store['Store']['created']); ?>&nbsp;</td>
24
				<td><?php echo h($store['Store']['sub_tag_param']); ?>&nbsp;</td>
24
				<td><?php echo h($store['Store']['modified']); ?>&nbsp;</td>
-
 
25
				<td class="actions">
25
				<td class="actions">
26
					<?php echo $this->Html->link(__('View'), array('action' => 'view', $store['Store']['id'])); ?>
26
					<?php echo $this->Html->link(__('View'), array('action' => 'view', $store['Store']['id'])); ?>
27
					<?php echo $this->Html->link(__('Edit'), array('action' => 'edit', $store['Store']['id'])); ?>
27
					<?php echo $this->Html->link(__('Edit'), array('action' => 'edit', $store['Store']['id'])); ?>
28
					<?php echo $this->Form->postLink(__('Delete'), array('action' => 'delete', $store['Store']['id']), null, __('Are you sure you want to delete # %s?', $store['Store']['id'])); ?>
28
					<?php echo $this->Form->postLink(__('Delete'), array('action' => 'delete', $store['Store']['id']), null, __('Are you sure you want to delete # %s?', $store['Store']['id'])); ?>
29
				</td>
29
				</td>