<div class="contentcomments form">
	<?php echo $this->Form->create('Contentcomment'); ?>
	<fieldset>
		<legend><?php echo __('Edit Contentcomment'); ?></legend>
				<?php
		echo $this->Form->input('id');
		echo $this->Form->input('content_id');
		echo $this->Form->input('user_id');
		echo $this->Form->input('comment');
		echo $this->Form->input('parent_id');
	?>
	</fieldset>
	<?php echo $this->Form->end(__('Submit')); ?>
</div>

