| Line -... |
Line 1... |
| - |
|
1 |
<style>
|
| - |
|
2 |
td.cell div { width: 100%; height: 100%; overflow:scroll; }
|
| - |
|
3 |
td.cell { height: 100px; }
|
| - |
|
4 |
</style>
|
| 1 |
<div class="container">
|
5 |
<div class="container">
|
| 2 |
<div class="row">
|
6 |
<div class="row">
|
| 3 |
<div class="col-lg-3">
|
7 |
<div class="col-lg-3">
|
| 4 |
<?php echo $this->Element('adminactions');?>
|
8 |
<?php echo $this->Element('adminactions');?>
|
| 5 |
</div>
|
9 |
</div>
|
| 6 |
<div class="col-lg-9">
|
10 |
<div class="col-lg-9">
|
| 7 |
<h2><?php echo __('Appmasters'); ?></h2>
|
11 |
<h2><?php echo __('Appmasters'); ?></h2>
|
| - |
|
12 |
<?php echo $this->element('appsearch');?>
|
| 8 |
<table cellpadding="0" cellspacing="0">
|
13 |
<table class="table table-striped">
|
| 9 |
<tr>
|
14 |
<tr>
|
| 10 |
<th><?php echo $this->Paginator->sort('id'); ?></th>
|
15 |
<th><?php echo $this->Paginator->sort('id'); ?></th>
|
| - |
|
16 |
<th><?php echo $this->Paginator->sort('active_offer'); ?></th>
|
| 11 |
<th><?php echo $this->Paginator->sort('app_name'); ?></th>
|
17 |
<th><?php echo $this->Paginator->sort('app_name'); ?></th>
|
| 12 |
<th><?php echo $this->Paginator->sort('package_name'); ?></th>
|
18 |
<th><?php echo $this->Paginator->sort('package_name'); ?></th>
|
| 13 |
<th><?php echo $this->Paginator->sort('os_name'); ?></th>
|
19 |
<th><?php echo $this->Paginator->sort('os_name'); ?></th>
|
| 14 |
<th><?php echo $this->Paginator->sort('shortDescription'); ?></th>
|
20 |
<th><?php echo $this->Paginator->sort('shortDescription'); ?></th>
|
| 15 |
<th><?php echo $this->Paginator->sort('longDescription'); ?></th>
|
21 |
<th><?php echo $this->Paginator->sort('longDescription'); ?></th>
|
| Line 19... |
Line 25... |
| 19 |
<th class="actions"><?php echo __('Actions'); ?></th>
|
25 |
<th class="actions"><?php echo __('Actions'); ?></th>
|
| 20 |
</tr>
|
26 |
</tr>
|
| 21 |
<?php foreach ($appmasters as $appmaster): ?>
|
27 |
<?php foreach ($appmasters as $appmaster): ?>
|
| 22 |
<tr>
|
28 |
<tr>
|
| 23 |
<td><?php echo h($appmaster['Appmaster']['id']); ?> </td>
|
29 |
<td><?php echo h($appmaster['Appmaster']['id']); ?> </td>
|
| - |
|
30 |
<td><a href="<?php echo $base_url;?>admin/app_offers/update/<?php echo $appmaster['Appmaster']['id'];?>">Edit Offer</a></td>
|
| 24 |
<td><?php echo h($appmaster['Appmaster']['app_name']); ?> </td>
|
31 |
<td><?php echo h($appmaster['Appmaster']['app_name']); ?> </td>
|
| 25 |
<td><?php echo h($appmaster['Appmaster']['package_name']); ?> </td>
|
32 |
<td><?php echo h($appmaster['Appmaster']['package_name']); ?> </td>
|
| 26 |
<td><?php echo h($appmaster['Appmaster']['os_name']); ?> </td>
|
33 |
<td><?php echo h($appmaster['Appmaster']['os_name']); ?> </td>
|
| 27 |
<td><?php echo h($appmaster['Appmaster']['shortDescription']); ?> </td>
|
34 |
<td class="cell"><div><?php echo h($appmaster['Appmaster']['shortDescription']); ?></div></td>
|
| 28 |
<td><?php echo h($appmaster['Appmaster']['longDescription']); ?> </td>
|
35 |
<td class="cell"><div><?php echo h($appmaster['Appmaster']['longDescription']); ?></div></td>
|
| 29 |
<td><?php echo h($appmaster['Appmaster']['customerOneLiner']); ?> </td>
|
36 |
<td><?php echo h($appmaster['Appmaster']['customerOneLiner']); ?> </td>
|
| 30 |
<td><?php echo h($appmaster['Appmaster']['retailerOneLiner']); ?> </td>
|
37 |
<td><?php echo h($appmaster['Appmaster']['retailerOneLiner']); ?> </td>
|
| 31 |
<td><?php echo h($appmaster['Appmaster']['showApp']); ?> </td>
|
38 |
<td><?php echo h($appmaster['Appmaster']['showApp']); ?> </td>
|
| 32 |
<td class="actions">
|
39 |
<td class="actions">
|
| 33 |
<?php //echo $this->Html->link(__('View'), array('action' => 'view', $appmaster['Appmaster']['id'])); ?>
|
40 |
<?php //echo $this->Html->link(__('View'), array('action' => 'view', $appmaster['Appmaster']['id'])); ?>
|