| 15085 |
anikendra |
1 |
<div class="userFilters form">
|
|
|
2 |
<?php echo $this->Form->create('UserFilter'); ?>
|
|
|
3 |
<fieldset>
|
|
|
4 |
<legend><?php echo __('Admin Add User Filter'); ?></legend>
|
|
|
5 |
<?php
|
|
|
6 |
echo $this->Form->input('user_id');
|
|
|
7 |
echo $this->Form->input('type');
|
|
|
8 |
echo $this->Form->input('filters');
|
|
|
9 |
?>
|
|
|
10 |
</fieldset>
|
|
|
11 |
<?php echo $this->Form->end(__('Submit')); ?>
|
|
|
12 |
</div>
|
|
|
13 |
<div class="actions">
|
|
|
14 |
<h3><?php echo __('Actions'); ?></h3>
|
|
|
15 |
<ul>
|
|
|
16 |
|
|
|
17 |
<li><?php echo $this->Html->link(__('List User Filters'), array('action' => 'index')); ?></li>
|
|
|
18 |
<li><?php echo $this->Html->link(__('List Users'), array('controller' => 'users', 'action' => 'index')); ?> </li>
|
|
|
19 |
<li><?php echo $this->Html->link(__('New User'), array('controller' => 'users', 'action' => 'add')); ?> </li>
|
|
|
20 |
</ul>
|
|
|
21 |
</div>
|