Subversion Repositories SmartDukaan

Rev

Rev 13532 | Details | Compare with Previous | Last modification | View Log | RSS feed

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