Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
14098 anikendra 1
<div class="posts form">
2
<?php echo $this->Form->create('Post' , array( 'type' => 'post' ));?>
3
	<fieldset>
4
 		<legend><?php __('Edit Post');?></legend>
5
	<?php
6
		echo $this->Form->hidden('_id');
7
		echo $this->Form->input('title');
8
		echo $this->Form->input('body');
9
		echo $this->Form->input('hoge');
10
	?>
11
	</fieldset>
12
<?php echo $this->Form->end('Submit');?>
13
</div>
14
<div class="actions">
15
	<ul>
16
		<li><?php echo $this->Html->link(__('List Posts', true), array('action'=>'index'));?></li>
17
	</ul>
18
</div>