Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
16549 anikendra 1
<div class="appAffiliates view">
2
<h2><?php echo __('App Affiliate'); ?></h2>
3
	<dl>
4
		<dt><?php echo __('Id'); ?></dt>
5
		<dd>
6
			<?php echo h($appAffiliate['AppAffiliate']['id']); ?>
7
			&nbsp;
8
		</dd>
9
		<dt><?php echo __('Name'); ?></dt>
10
		<dd>
11
			<?php echo h($appAffiliate['AppAffiliate']['name']); ?>
12
			&nbsp;
13
		</dd>
14
		<dt><?php echo __('IsActive'); ?></dt>
15
		<dd>
16
			<?php echo h($appAffiliate['AppAffiliate']['isActive']); ?>
17
			&nbsp;
18
		</dd>
19
	</dl>
20
</div>
21
<div class="actions">
22
	<h3><?php echo __('Actions'); ?></h3>
23
	<ul>
24
		<li><?php echo $this->Html->link(__('Edit App Affiliate'), array('action' => 'edit', $appAffiliate['AppAffiliate']['id'])); ?> </li>
25
		<li><?php echo $this->Form->postLink(__('Delete App Affiliate'), array('action' => 'delete', $appAffiliate['AppAffiliate']['id']), null, __('Are you sure you want to delete # %s?', $appAffiliate['AppAffiliate']['id'])); ?> </li>
26
		<li><?php echo $this->Html->link(__('List App Affiliates'), array('action' => 'index')); ?> </li>
27
		<li><?php echo $this->Html->link(__('New App Affiliate'), array('action' => 'add')); ?> </li>
28
	</ul>
29
</div>