mirror of
https://bitbucket.org/jsuto/piler.git
synced 2025-07-03 00:13:17 +02:00
This commit wraps up:
-Better Navbar formatting -AJAX delete confirmation -Enhanced validation feedback on admin pages
This commit is contained in:
@ -66,7 +66,6 @@
|
||||
<tr>
|
||||
<th><?php print $text_domain; ?></th>
|
||||
<th><?php print $text_mapped_domain; ?></th>
|
||||
<th> </th>
|
||||
<?php if(ENABLE_SAAS == 1) { ?>
|
||||
<th><?php print $text_ldap; ?></th>
|
||||
<?php } ?>
|
||||
@ -78,9 +77,9 @@
|
||||
<td><a href="index.php?route=user/list&search=@<?php print $domain['domain']; ?>"><?php print $domain['domain']; ?></a></td>
|
||||
<td><?php print $domain['mapped']; ?></td>
|
||||
<?php if(ENABLE_SAAS == 1) { ?>
|
||||
<td><?php print $domain['ldap']; ?></td>
|
||||
<td><?php if(isset($domain['ldap'])) {print $domain['ldap'];} else {print ' ';} ?></td>
|
||||
<?php } ?>
|
||||
<td><a href="index.php?route=domain/remove&id=1&name=<?php print urlencode($domain['domain']); ?>" class="confirm-delete" data-id="1" data-name="<?php print urlencode($domain['domain']); ?>"><?php print $text_remove; ?></a></td>
|
||||
<td><a href="index.php?route=domain/remove&id=1&name=<?php print urlencode($domain['domain']); ?>" class="confirm-delete" data-id="1" data-name="<?php print urlencode($domain['domain']); ?>"><i class="icon-remove-sign"></i> <?php print $text_remove; ?></a></td>
|
||||
</tr>
|
||||
<?php } ?>
|
||||
|
||||
|
Reference in New Issue
Block a user