Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
15761 manas 1
<div class="userAddresses form">
2
<?php echo $this->Form->create('UserAddress'); ?>
3
	<fieldset>
4
		<legend><?php echo __('Admin Edit User Address'); ?></legend>
5
	<?php
6
		echo $this->Form->input('id');
7
		echo $this->Form->input('user_id');
8
		echo $this->Form->input('email');
9
		echo $this->Form->input('name');
10
		echo $this->Form->input('mobile_number');
11
		echo $this->Form->input('store_name');
12
		echo $this->Form->input('address');
13
		echo $this->Form->input('city');
14
		echo $this->Form->input('state');
15
		echo $this->Form->input('pincode');
16
	?>
17
	</fieldset>
18
<?php echo $this->Form->end(__('Submit')); ?>
19
</div>
20
<div class="actions">
21
	<h3><?php echo __('Actions'); ?></h3>
22
	<ul>
23
 
24
		<li><?php echo $this->Form->postLink(__('Delete'), array('action' => 'delete', $this->Form->value('UserAddress.id')), null, __('Are you sure you want to delete # %s?', $this->Form->value('UserAddress.id'))); ?></li>
25
		<li><?php echo $this->Html->link(__('List User Addresses'), array('action' => 'index')); ?></li>
26
	</ul>
27
</div>