Skip to content

Commit 5d38ee0

Browse files
committed
move actions to right side
1 parent df28b6b commit 5d38ee0

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

webroot/panel/pi.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -93,10 +93,10 @@
9393
<table id='users-table' class='stripe compact hover'>
9494
<thead>
9595
<tr>
96-
<th>Actions</th>
9796
<th>Name</th>
9897
<th>Username</th>
9998
<th>Mail</th>
99+
<th>Actions</th>
100100
</tr>
101101
</thead>
102102
<tbody>
@@ -107,6 +107,9 @@
107107
}
108108

109109
echo "<tr>";
110+
echo "<td>" . $assoc->getFirstname() . " " . $assoc->getLastname() . "</td>";
111+
echo "<td>" . $assoc->uid . "</td>";
112+
echo "<td>" . $assoc->getMail() . "</td>";
110113
echo "<td>";
111114
$CSRFTokenHiddenFormInput = UnityHTTPD::getCSRFTokenHiddenFormInput();
112115
echo
@@ -123,9 +126,6 @@
123126
>
124127
</form>";
125128
echo "</td>";
126-
echo "<td>" . $assoc->getFirstname() . " " . $assoc->getLastname() . "</td>";
127-
echo "<td>" . $assoc->uid . "</td>";
128-
echo "<td>" . $assoc->getMail() . "</td>";
129129
echo "</tr>";
130130
}
131131
echo "</tbody>";
@@ -138,10 +138,10 @@
138138
{
139139
responsive: true,
140140
columns: [
141-
{responsivePriority: 1}, // actions
142141
{responsivePriority: 2}, // name
143142
{responsivePriority: 1}, // username
144143
{responsivePriority: 2}, // mail
144+
{responsivePriority: 1}, // actions
145145
],
146146
layout: {
147147
topStart: {

0 commit comments

Comments
 (0)