| 13646 |
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 __('Exceptional Nlcs'); ?></h2>
|
|
|
8 |
<table class="table table-striped">
|
|
|
9 |
<tr>
|
|
|
10 |
<th><?php echo ('sku'); ?></th>
|
|
|
11 |
<th><?php echo ('max_nlc'); ?></th>
|
|
|
12 |
<th><?php echo ('min_nlc'); ?></th>
|
|
|
13 |
<th class="actions"><?php echo __('Actions'); ?></th>
|
|
|
14 |
</tr>
|
|
|
15 |
<?php foreach ($exceptionalnlcs as $exceptionalnlc): ?>
|
|
|
16 |
<?php $exceptionalnlc = json_decode($exceptionalnlc,1);?>
|
|
|
17 |
<tr>
|
|
|
18 |
<td><?php echo h($exceptionalnlc['sku']); ?> </td>
|
|
|
19 |
<td><?php echo h($exceptionalnlc['max_nlc']); ?> </td>
|
|
|
20 |
<td><?php echo h($exceptionalnlc['min_nlc']); ?> </td>
|
|
|
21 |
<td class="actions">
|
|
|
22 |
<?php echo $this->Html->link(__('Edit'), array('action' => 'edit', $exceptionalnlc['_id']['$oid'])); ?>
|
|
|
23 |
<?php echo $this->Form->postLink(__('Delete'), array('action' => 'delete', $exceptionalnlc['_id']['$oid']), null, __('Are you sure you want to delete # %s?', $exceptionalnlc['_id']['$oid'])); ?>
|
|
|
24 |
</td>
|
|
|
25 |
</tr>
|
|
|
26 |
<?php endforeach; ?>
|
|
|
27 |
</table>
|
|
|
28 |
</div>
|
|
|
29 |
</div>
|
|
|
30 |
</div>
|