Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
13591 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 __('Mobile App Settings'); ?></h2>
8
			<table class="table table-striped">
9
			<tr>
10
					<th><?php echo $this->Paginator->sort('id'); ?></th>
11
					<th><?php echo $this->Paginator->sort('setting'); ?></th>
12
					<th><?php echo $this->Paginator->sort('value'); ?></th>
13
					<th><?php echo $this->Paginator->sort('created'); ?></th>
14
					<th class="actions"><?php echo __('Actions'); ?></th>
15
			</tr>
16
			<?php foreach ($mobileappsettings as $mobileappsetting): ?>
17
			<tr>
18
				<td><?php echo h($mobileappsetting['Mobileappsetting']['id']); ?>&nbsp;</td>
19
				<td><?php echo h($mobileappsetting['Mobileappsetting']['setting']); ?>&nbsp;</td>
20
				<td><?php echo h($mobileappsetting['Mobileappsetting']['value']); ?>&nbsp;</td>
21
				<td><?php echo h($mobileappsetting['Mobileappsetting']['created']); ?>&nbsp;</td>
22
				<td class="actions">
23
					<?php echo $this->Html->link(__('View'), array('action' => 'view', $mobileappsetting['Mobileappsetting']['id'])); ?>
24
					<?php echo $this->Html->link(__('Edit'), array('action' => 'edit', $mobileappsetting['Mobileappsetting']['id'])); ?>
25
					<?php echo $this->Form->postLink(__('Delete'), array('action' => 'delete', $mobileappsetting['Mobileappsetting']['id']), null, __('Are you sure you want to delete # %s?', $mobileappsetting['Mobileappsetting']['id'])); ?>
26
				</td>
27
			</tr>
28
		<?php endforeach; ?>
29
			</table>
30
			<p>
31
			<?php
32
			echo $this->Paginator->counter(array(
33
			'format' => __('Page {:page} of {:pages}, showing {:current} records out of {:count} total, starting on record {:start}, ending on {:end}')
34
			));
35
			?>	</p>
36
			<div class="paging">
37
			<?php
38
				echo $this->Paginator->prev('< ' . __('previous'), array(), null, array('class' => 'prev disabled'));
39
				echo $this->Paginator->numbers(array('separator' => ''));
40
				echo $this->Paginator->next(__('next') . ' >', array(), null, array('class' => 'next disabled'));
41
			?>
42
			</div>
43
		</div>
44
	</div>
45
</div>