Subversion Repositories SmartDukaan

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
14510 anikendra 1
<div class="container">
2
	<div class="row">
3
		<div class="col-lg-3">
4
			<?php echo $this->Element('adminactions');?>
5
		</div>
6
		<div class="col-lg-9">
7
			<h2><?php echo __('Negative Deals'); ?></h2>
8
			<table class="table table-striped">
9
			<tr>
10
					<th><?php echo ('sku'); ?></th>
11
					<th><?php echo ('Brand'); ?></th>
12
					<th><?php echo ('Name'); ?></th>
13
					<th><?php echo ('Bundle Id'); ?></th>
14
					<th class="actions"><?php echo __('Actions'); ?></th>
15
			</tr>
16
			<?php foreach ($negativedeals as $negativedeal): ?>
17
			<tr>
18
				<td><?php echo h($negativedeal['sku']); ?>&nbsp;</td>
19
				<td><?php echo h($negativedeal['brand']); ?></td>
20
				<td><?php echo h($negativedeal['source_product_name']); ?></td>
21
				<td><?php echo $negativedeal['skuBundleId']; ?></td>
22
				<td class="actions">
23
					<?php echo $this->Form->postLink(__('Delete'), array('action' => 'delete', $negativedeal['_id']['$oid']), null, __('Are you sure you want to delete # %s?', $negativedeal['_id']['$oid'])); ?>
24
				</td>
25
			</tr>
26
		<?php endforeach; ?>
27
			</table>			
28
		</div>
29
	</div>
30
	<nav>
31
	  <ul class="pager">
32
	  	<?php if($page>1):?>
33
	    <li><a href="?page=<?php echo $page-1;?>">Previous</a></li>
34
		<?php endif;?>
35
	    <li><a href="?page=<?php echo $page+1;?>">Next</a></li>
36
	  </ul>
37
	</nav>
38
</div>