mirror of
https://github.com/myvesta/vesta
synced 2025-08-14 18:49:21 -07:00
fix for bulk operations
This commit is contained in:
parent
0f8578f7a8
commit
db4c4d333b
1 changed files with 4 additions and 3 deletions
|
@ -17,9 +17,10 @@
|
|||
</td>
|
||||
<td>
|
||||
<form action="/bulk/dns/" method="post">
|
||||
<input type="hidden" name="domain" value="<?=htmlentities($_GET['domain'])?>" />
|
||||
<input type="hidden" name="token" value="<?=$_SESSION['token']?>" />
|
||||
<div class="l-select">
|
||||
<select name="" id="">
|
||||
<select name="action" id="">
|
||||
<option value=""><?=__('apply to selected')?></option>
|
||||
<option value="suspend"><?php print __('suspend');?></option>
|
||||
<option value="unsuspend"><?php print __('unsuspend');?></option>
|
||||
|
@ -71,8 +72,8 @@
|
|||
v_unit_id="<?=$key?>" v_section="dns_rec">
|
||||
<div class="l-unit-toolbar clearfix">
|
||||
<div class="l-unit-toolbar__col l-unit-toolbar__col--left">
|
||||
<input id="check<?php echo $i ?>" class="ch-toggle" type="checkbox" name="check" value="check<?php echo $i ?>">
|
||||
<label for="check<?php echo $i ?>" class="check-label"></label>
|
||||
<input id="check<?=$data[$key]['ID']?>" class="ch-toggle" type="checkbox" name="record[]" value="<?=$data[$key]['ID']?>">
|
||||
<label for="check<?=$data[$key]['ID']?>" class="check-label"></label>
|
||||
</div>
|
||||
<!-- l-unit-toolbar__col -->
|
||||
<div class="l-unit-toolbar__col l-unit-toolbar__col--right noselect">
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue