Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
15051 manas 1
<div class="retailers form">
2
<?php echo $this->Form->create('Retailer'); ?>
3
	<fieldset>
4
		<legend><?php echo __('Admin Add Retailer'); ?></legend>
5
	<?php
6
		echo $this->Form->input('name');
7
		echo $this->Form->input('address');
8
		echo $this->Form->input('mobilenumber');
9
		echo $this->Form->input('status');
10
	?>
11
	</fieldset>
12
<?php echo $this->Form->end(__('Submit')); ?>
13
</div>
14
<div class="actions">
15
	<h3><?php echo __('Actions'); ?></h3>
16
	<ul>
17
 
18
		<li><?php echo $this->Html->link(__('List Retailers'), array('action' => 'index')); ?></li>
19
		<li><?php echo $this->Html->link(__('List Calls'), array('controller' => 'calls', 'action' => 'index')); ?> </li>
20
		<li><?php echo $this->Html->link(__('New Call'), array('controller' => 'calls', 'action' => 'add')); ?> </li>
21
		<li><?php echo $this->Html->link(__('List Play Store Links'), array('controller' => 'play_store_links', 'action' => 'index')); ?> </li>
22
		<li><?php echo $this->Html->link(__('New Play Store Link'), array('controller' => 'play_store_links', 'action' => 'add')); ?> </li>
23
	</ul>
24
</div>