Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
15580 manas 1
<div class="useractives form">
2
<?php echo $this->Form->create('Useractive'); ?>
3
	<fieldset>
4
		<legend><?php echo __('Admin Edit Useractive'); ?></legend>
5
	<?php
6
		echo $this->Form->input('user_id');
7
		echo $this->Form->input('last_active');
8
	?>
9
	</fieldset>
10
<?php echo $this->Form->end(__('Submit')); ?>
11
</div>
12
<div class="actions">
13
	<h3><?php echo __('Actions'); ?></h3>
14
	<ul>
15
 
16
		<li><?php echo $this->Form->postLink(__('Delete'), array('action' => 'delete', $this->Form->value('Useractive.last_active')), null, __('Are you sure you want to delete # %s?', $this->Form->value('Useractive.last_active'))); ?></li>
17
		<li><?php echo $this->Html->link(__('List Useractives'), array('action' => 'index')); ?></li>
18
	</ul>
19
</div>