Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
14518 anikendra 1
<div class="devices form">
2
<?php echo $this->Form->create('Device'); ?>
3
	<fieldset>
4
		<legend><?php echo __('Admin Add Device'); ?></legend>
5
	<?php
6
		echo $this->Form->input('user_id');
7
		echo $this->Form->input('versioncode');
8
		echo $this->Form->input('versionname');
9
		echo $this->Form->input('osversion');
10
		echo $this->Form->input('imeinumber');
11
		echo $this->Form->input('manufacturer');
12
		echo $this->Form->input('model');
13
		echo $this->Form->input('brand');
14
	?>
15
	</fieldset>
16
<?php echo $this->Form->end(__('Submit')); ?>
17
</div>
18
<div class="actions">
19
	<h3><?php echo __('Actions'); ?></h3>
20
	<ul>
21
 
22
		<li><?php echo $this->Html->link(__('List Devices'), array('action' => 'index')); ?></li>
23
		<li><?php echo $this->Html->link(__('List Users'), array('controller' => 'users', 'action' => 'index')); ?> </li>
24
		<li><?php echo $this->Html->link(__('New User'), array('controller' => 'users', 'action' => 'add')); ?> </li>
25
	</ul>
26
</div>