Subversion Repositories SmartDukaan

Rev

Rev 16614 | Rev 16755 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
16614 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 __('Appmasters'); ?></h2>
8
			<table cellpadding="0" cellspacing="0">
9
			<tr>
10
					<th><?php echo $this->Paginator->sort('id'); ?></th>
11
					<th><?php echo $this->Paginator->sort('app_name'); ?></th>
12
					<th><?php echo $this->Paginator->sort('package_name'); ?></th>
13
					<th><?php echo $this->Paginator->sort('os_name'); ?></th>
14
					<th><?php echo $this->Paginator->sort('shortDescription'); ?></th>
15
					<th><?php echo $this->Paginator->sort('longDescription'); ?></th>
16
					<th><?php echo $this->Paginator->sort('customerOneLiner'); ?></th>
17
					<th><?php echo $this->Paginator->sort('retailerOneLiner'); ?></th>
16724 anikendra 18
					<th><?php echo $this->Paginator->sort('showApp'); ?></th>
16614 anikendra 19
					<th class="actions"><?php echo __('Actions'); ?></th>
20
			</tr>
21
			<?php foreach ($appmasters as $appmaster): ?>
22
			<tr>
23
				<td><?php echo h($appmaster['Appmaster']['id']); ?>&nbsp;</td>
24
				<td><?php echo h($appmaster['Appmaster']['app_name']); ?>&nbsp;</td>
25
				<td><?php echo h($appmaster['Appmaster']['package_name']); ?>&nbsp;</td>
26
				<td><?php echo h($appmaster['Appmaster']['os_name']); ?>&nbsp;</td>
27
				<td><?php echo h($appmaster['Appmaster']['shortDescription']); ?>&nbsp;</td>
28
				<td><?php echo h($appmaster['Appmaster']['longDescription']); ?>&nbsp;</td>
29
				<td><?php echo h($appmaster['Appmaster']['customerOneLiner']); ?>&nbsp;</td>
30
				<td><?php echo h($appmaster['Appmaster']['retailerOneLiner']); ?>&nbsp;</td>
16724 anikendra 31
				<td><?php echo h($appmaster['Appmaster']['showApp']); ?>&nbsp;</td>
16614 anikendra 32
				<td class="actions">
33
					<?php //echo $this->Html->link(__('View'), array('action' => 'view', $appmaster['Appmaster']['id'])); ?>
34
					<?php echo $this->Html->link(__('Edit'), array('action' => 'edit', $appmaster['Appmaster']['id'])); ?>
35
					<?php //echo $this->Form->postLink(__('Delete'), array('action' => 'delete', $appmaster['Appmaster']['id']), null, __('Are you sure you want to delete # %s?', $appmaster['Appmaster']['id'])); ?>
36
				</td>
37
			</tr>
38
		<?php endforeach; ?>
39
			</table>
40
			<p>
41
			<?php
42
			echo $this->Paginator->counter(array(
43
			'format' => __('Page {:page} of {:pages}, showing {:current} records out of {:count} total, starting on record {:start}, ending on {:end}')
44
			));
45
			?>	</p>
46
			<div class="paging">
47
			<?php
48
				echo $this->Paginator->prev('< ' . __('previous'), array(), null, array('class' => 'prev disabled'));
49
				echo $this->Paginator->numbers(array('separator' => ''));
50
				echo $this->Paginator->next(__('next') . ' >', array(), null, array('class' => 'next disabled'));
51
			?>
52
			</div>
53
		</div>
54
	</div>
55
</div>