Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
15034 manas 1
<div class="saholicLogs form">
2
<?php echo $this->Form->create('SaholicLog'); ?>
3
	<fieldset>
4
		<legend><?php echo __('Admin Add Saholic Log'); ?></legend>
5
	<?php
6
		echo $this->Form->input('user_id');
7
		echo $this->Form->input('url');
8
		echo $this->Form->input('time');
9
		echo $this->Form->input('httpstatus');
10
		echo $this->Form->input('cookies');
11
		echo $this->Form->input('html');
12
	?>
13
	</fieldset>
14
<?php echo $this->Form->end(__('Submit')); ?>
15
</div>
16
<div class="actions">
17
	<h3><?php echo __('Actions'); ?></h3>
18
	<ul>
19
 
20
		<li><?php echo $this->Html->link(__('List Saholic Logs'), array('action' => 'index')); ?></li>
21
	</ul>
22
</div>