18 lines
567 B
Plaintext
18 lines
567 B
Plaintext
|
|
<div class="groups form">
|
||
|
|
<?php echo $form->create('Group');?>
|
||
|
|
<fieldset>
|
||
|
|
<legend><?php __('Add Group');?></legend>
|
||
|
|
<?php
|
||
|
|
echo $form->input('name');
|
||
|
|
?>
|
||
|
|
</fieldset>
|
||
|
|
<?php echo $form->end('Submit');?>
|
||
|
|
</div>
|
||
|
|
<div class="actions">
|
||
|
|
<ul>
|
||
|
|
<li><?php echo $html->link(__('List Groups', true), array('action'=>'index'));?></li>
|
||
|
|
<li><?php echo $html->link(__('List Users', true), array('controller'=> 'users', 'action'=>'index')); ?> </li>
|
||
|
|
<li><?php echo $html->link(__('New User', true), array('controller'=> 'users', 'action'=>'add')); ?> </li>
|
||
|
|
</ul>
|
||
|
|
</div>
|