Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
13591 anikendra 1
<div class="mobileappsettings view">
2
<h2><?php echo __('Mobileappsetting'); ?></h2>
3
	<dl>
4
		<dt><?php echo __('Id'); ?></dt>
5
		<dd>
6
			<?php echo h($mobileappsetting['Mobileappsetting']['id']); ?>
7
			&nbsp;
8
		</dd>
9
		<dt><?php echo __('Setting'); ?></dt>
10
		<dd>
11
			<?php echo h($mobileappsetting['Mobileappsetting']['setting']); ?>
12
			&nbsp;
13
		</dd>
14
		<dt><?php echo __('Value'); ?></dt>
15
		<dd>
16
			<?php echo h($mobileappsetting['Mobileappsetting']['value']); ?>
17
			&nbsp;
18
		</dd>
19
		<dt><?php echo __('Creted'); ?></dt>
20
		<dd>
21
			<?php echo h($mobileappsetting['Mobileappsetting']['creted']); ?>
22
			&nbsp;
23
		</dd>
24
	</dl>
25
</div>
26
<div class="actions">
27
	<h3><?php echo __('Actions'); ?></h3>
28
	<ul>
29
		<li><?php echo $this->Html->link(__('Edit Mobileappsetting'), array('action' => 'edit', $mobileappsetting['Mobileappsetting']['id'])); ?> </li>
30
		<li><?php echo $this->Form->postLink(__('Delete Mobileappsetting'), array('action' => 'delete', $mobileappsetting['Mobileappsetting']['id']), null, __('Are you sure you want to delete # %s?', $mobileappsetting['Mobileappsetting']['id'])); ?> </li>
31
		<li><?php echo $this->Html->link(__('List Mobileappsettings'), array('action' => 'index')); ?> </li>
32
		<li><?php echo $this->Html->link(__('New Mobileappsetting'), array('action' => 'add')); ?> </li>
33
	</ul>
34
</div>