45 lines
1.3 KiB
PHP
45 lines
1.3 KiB
PHP
<div class="row">
|
|
<div class="col-md-3">
|
|
<fieldset>
|
|
<legend>Method Details</legend>
|
|
|
|
<?php echo Form::input('notes',$o->notes,array('label'=>'Description','placeholder'=>'Method Description')); ?>
|
|
<?php echo Form::input('menu_display',$o->menu_display,array('label'=>'Menu Title','placeholder'=>'Menu Title')); ?>
|
|
|
|
</fieldset>
|
|
</div>
|
|
|
|
<div class="col-md-7">
|
|
<fieldset>
|
|
<legend>Method Security</legend>
|
|
|
|
<table class="table table-striped table-condensed table-hover" id="list-table">
|
|
<thead><tr>
|
|
<th>Method</th>
|
|
<th>Notes</th>
|
|
<th>Group Active</th>
|
|
<th>Method Enable</th>
|
|
</tr></thead>
|
|
|
|
<tbody>
|
|
<?php foreach (ORM::factory('Group')->find_all() as $go) : ?>
|
|
<tr>
|
|
<td><?php echo HTML::anchor(URL::link('admin','group/edit/'.$go->id,TRUE),$go->display('name')); ?></td>
|
|
<td><?php echo $go->display('notes'); ?></td>
|
|
<td><?php echo $go->display('status'); ?></td>
|
|
<td><?php echo Form::checkbox('groups[]',$go->id,$o->has('group',$go),array('nocg'=>TRUE)); ?></td>
|
|
</tr>
|
|
<?php endforeach ?>
|
|
</tbody>
|
|
</table>
|
|
</fieldset>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="row">
|
|
<div class="col-md-4">
|
|
<button type="submit" class="btn btn-primary">Save changes</button>
|
|
<button type="button" class="btn">Cancel</button>
|
|
</div>
|
|
</div>
|