Subversion Repositories SmartDukaan

Rev

Rev 15194 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 15194 Rev 15227
Line 1... Line 1...
1
<div class="acls form">
1
<div class="container">
-
 
2
	<div class="row">
-
 
3
		<div class="col-lg-3">
-
 
4
			<?php echo $this->Element('adminactions');?>
-
 
5
		</div>
-
 
6
		<div class="col-lg-9">
2
<?php echo $this->Form->create('Acl'); ?>
7
			<?php echo $this->Form->create('Acl'); ?>
3
	<fieldset>
8
				<fieldset>
4
		<legend><?php echo __('Admin Edit Acl'); ?></legend>
9
					<legend><?php echo __('Admin Edit Acl'); ?></legend>
5
	<?php
10
				<?php
6
		echo $this->Form->input('id');
11
					echo $this->Form->input('id');
7
		echo $this->Form->input('group_id');
12
					echo $this->Form->input('group_id');
8
		echo $this->Form->input('action');
13
					echo $this->Form->input('action');
9
		echo $this->Form->input('access');
14
					echo $this->Form->input('access');
10
	?>
15
				?>
11
	</fieldset>
16
				</fieldset>
12
<?php echo $this->Form->end(__('Submit')); ?>
17
			<?php echo $this->Form->end(__('Submit')); ?>
13
</div>
18
		</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('Acl.id')), null, __('Are you sure you want to delete # %s?', $this->Form->value('Acl.id'))); ?></li>
-
 
19
		<li><?php echo $this->Html->link(__('List Acls'), array('action' => 'index')); ?></li>
-
 
20
		<li><?php echo $this->Html->link(__('List Groups'), array('controller' => 'groups', 'action' => 'index')); ?> </li>
-
 
21
		<li><?php echo $this->Html->link(__('New Group'), array('controller' => 'groups', 'action' => 'add')); ?> </li>
-
 
22
	</ul>
19
	</div>
23
</div>
20
</div>
24
21