mirror of
https://bitbucket.org/jsuto/piler.git
synced 2025-06-15 04:47:03 +02:00
gui fixes
This commit is contained in:
@ -1,3 +1,17 @@
|
||||
<div id="deleteconfirm-modal" class="modal hide fade">
|
||||
<div class="modal-header">
|
||||
<button type="button" class="close" data-dismiss="modal" role="dialog" aria-hidden="true"><i class="icon-remove"></i></button>
|
||||
<h3><?php print $text_confirm; ?> <?php print $text_delete; ?></h3>
|
||||
</div>
|
||||
<div class="modal-body">
|
||||
<p><?php print $text_group_delete_confirm_message; ?> <span id="name">ERROR</span>?</p>
|
||||
</div>
|
||||
<div class="modal-footer">
|
||||
<a href="#" class="btn" data-dismiss="modal" aria-hidden="true"><?php print $text_close; ?></a>
|
||||
<a href="index.php?route=group/remove&id=-1&name=Error&confirmed=0" class="btn btn-primary" id="id"><?php print $text_delete; ?></a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<form method="post" name="search1" action="index.php?route=group/list" class="form-inline pull-right">
|
||||
<div class="input-append">
|
||||
<input type="text" name="search" class="input-medium" value="<?php print $search; ?>" />
|
||||
@ -26,15 +40,17 @@
|
||||
<table class="table table-striped table-condensed" id="ss1">
|
||||
<thead>
|
||||
<tr class="domainrow">
|
||||
<th class="domaincell"><?php print $text_groupname; ?> <a href="index.php?route=group/list&sort=groupname&order=0"><i class="icon-chevron-up"></i></a> <a href="index.php?route=group/list&sort=groupname&order=1"><i class="icon-chevron-down"></i></a></th>
|
||||
<th class="domaincell"> </th>
|
||||
<th><?php print $text_groupname; ?> <a href="index.php?route=group/list&sort=groupname&order=0"><i class="icon-chevron-up"></i></a> <a href="index.php?route=group/list&sort=groupname&order=1"><i class="icon-chevron-down"></i></a></th>
|
||||
<th> </th>
|
||||
<th> </th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<?php foreach($groups as $group) { ?>
|
||||
<tr class="domainrow">
|
||||
<td class="domaincell"><?php print $group['groupname']; ?></td>
|
||||
<td class="domaincell"><a href="index.php?route=group/edit&id=<?php print $group['id']; ?>"><?php print $text_edit_or_view; ?></a></td>
|
||||
<td><?php print $group['groupname']; ?></td>
|
||||
<td><a href="index.php?route=group/edit&id=<?php print $group['id']; ?>"><i class="icon-edit"></i> <?php print $text_edit_or_view; ?></a></td>
|
||||
<td><a href="index.php?route=group/remove&id=<?php print $group['id']; ?>&name=<?php print urlencode($group['groupname']); ?>" class="confirm-delete" data-id="<?php print $group['id']; ?>" data-name="<?php print $group['groupname']; ?>"><i class="icon-remove-sign"></i> <?php print $text_remove; ?></a></td>
|
||||
</tr>
|
||||
<?php } ?>
|
||||
</tbody>
|
||||
|
Reference in New Issue
Block a user