Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
13532 anikendra 1
<div class="offers form">
2
<?php echo $this->Form->create('Offer'); ?>
3
	<fieldset>
4
		<legend><?php echo __('Admin Add Offer'); ?></legend>
5
	<?php
6
		echo $this->Form->input('starttime');
7
		echo $this->Form->input('endtime');
8
		echo $this->Form->input('url');
9
		echo $this->Form->input('title');
10
		echo $this->Form->input('description');
11
		echo $this->Form->input('category');
12
		echo $this->Form->input('img730x150');
13
		echo $this->Form->input('img482x234');
14
		echo $this->Form->input('img720x280');
15
		echo $this->Form->input('img540x210');
16
		echo $this->Form->input('img360x140');
17
		echo $this->Form->input('img270x105');
18
	?>
19
	</fieldset>
20
<?php echo $this->Form->end(__('Submit')); ?>
21
</div>
22
<div class="actions">
23
	<h3><?php echo __('Actions'); ?></h3>
24
	<ul>
25
 
26
		<li><?php echo $this->Html->link(__('List Offers'), array('action' => 'index')); ?></li>
27
	</ul>
28
</div>