Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
13532 anikendra 1
<div class="orders form">
2
<?php echo $this->Form->create('Order'); ?>
3
	<fieldset>
4
		<legend><?php echo __('Edit Order'); ?></legend>
5
	<?php
6
		echo $this->Form->input('id');
7
		echo $this->Form->input('user_id');
8
		echo $this->Form->input('store_id');
9
		echo $this->Form->input('store_order_id');
10
		echo $this->Form->input('order_url');
11
		echo $this->Form->input('rawhtml');
12
		echo $this->Form->input('product_name');
13
		echo $this->Form->input('product_code');
14
		echo $this->Form->input('unit_price');
15
		echo $this->Form->input('total_amount');
16
		echo $this->Form->input('customer_name');
17
		echo $this->Form->input('customer_email');
18
		echo $this->Form->input('customer_mobile');
19
		echo $this->Form->input('customer_address');
20
		echo $this->Form->input('status');
21
	?>
22
	</fieldset>
23
<?php echo $this->Form->end(__('Submit')); ?>
24
</div>
25
<div class="actions">
26
	<h3><?php echo __('Actions'); ?></h3>
27
	<ul>
28
 
29
		<li><?php echo $this->Form->postLink(__('Delete'), array('action' => 'delete', $this->Form->value('Order.id')), null, __('Are you sure you want to delete # %s?', $this->Form->value('Order.id'))); ?></li>
30
		<li><?php echo $this->Html->link(__('List Orders'), array('action' => 'index')); ?></li>
31
		<li><?php echo $this->Html->link(__('List Users'), array('controller' => 'users', 'action' => 'index')); ?> </li>
32
		<li><?php echo $this->Html->link(__('New User'), array('controller' => 'users', 'action' => 'add')); ?> </li>
33
		<li><?php echo $this->Html->link(__('List Stores'), array('controller' => 'stores', 'action' => 'index')); ?> </li>
34
		<li><?php echo $this->Html->link(__('New Store'), array('controller' => 'stores', 'action' => 'add')); ?> </li>
35
	</ul>
36
</div>