Blame | Last modification | View Log | RSS feed
<div class="devices form"><?php echo $this->Form->create('Device'); ?><fieldset><legend><?php echo __('Edit Device'); ?></legend><?phpecho $this->Form->input('id');echo $this->Form->input('user_id');echo $this->Form->input('versioncode');echo $this->Form->input('versionname');echo $this->Form->input('osversion');echo $this->Form->input('imeinumber');echo $this->Form->input('manufacturer');echo $this->Form->input('model');echo $this->Form->input('brand');?></fieldset><?php echo $this->Form->end(__('Submit')); ?></div><div class="actions"><h3><?php echo __('Actions'); ?></h3><ul><li><?php echo $this->Form->postLink(__('Delete'), array('action' => 'delete', $this->Form->value('Device.id')), null, __('Are you sure you want to delete # %s?', $this->Form->value('Device.id'))); ?></li><li><?php echo $this->Html->link(__('List Devices'), array('action' => 'index')); ?></li><li><?php echo $this->Html->link(__('List Users'), array('controller' => 'users', 'action' => 'index')); ?> </li><li><?php echo $this->Html->link(__('New User'), array('controller' => 'users', 'action' => 'add')); ?> </li></ul></div>