<div class="wallcomments form">
	<?php echo $this->Form->create('Wallcomment'); ?>
	<fieldset>
		<legend><?php echo __('Add Wallcomment'); ?></legend>
				<?php
		echo $this->Form->input('wall_id');
		echo $this->Form->input('user_id');
		echo $this->Form->input('course_id');
		echo $this->Form->input('comment');
		echo $this->Form->input('parent_id');
	?>
	</fieldset>
	<?php echo $this->Form->end(__('Submit')); ?>
</div>

