Gruppenadministration Benutzergruppen:

- changed phrases
- show error dialog when json error returned
- zebra table
- hide filter header for non-filtered columns
- empty input field after adding Benutzer
This commit is contained in:
KarpAlex
2022-06-13 12:01:00 +02:00
parent 5bc57767d1
commit f57123e100
3 changed files with 13 additions and 16 deletions
@@ -142,7 +142,7 @@ class Gruppenadministration extends Auth_Controller
if (hasData($benutzerExistsRes))
{
$this->outputJsonError(getError($this->p->t('gruppenadministration', 'benutzerZugewiesen')));
$this->outputJsonError($this->p->t('gruppenadministration', 'benutzerSchonZugewiesen'));
return;
}
@@ -61,21 +61,9 @@
<th>Uid</th>
<th><?php echo ucfirst($this->p->t('global', 'vorname')); ?></th>
<th><?php echo ucfirst($this->p->t('global', 'nachname')); ?></th>
<th><?php echo ucfirst($this->p->t('ui', 'loeschen')); ?></th>
<th><?php echo ucfirst($this->p->t('ui', 'entfernen')); ?></th>
</thead>
<tbody>
<!-- <php foreach ($benutzer as $ben): ?>
<tr>
<td><?php echo $ben->uid; ?></td>
<td><?php echo $ben->vorname; ?></td>
<td><?php echo $ben->nachname; ?></td>
<td>
<button class="btn btn-default benutzerLoeschen" id="benutzerLoeschen">
<php echo ucfirst($this->p->t('ui', 'loeschen')); >
</button>
</td>
</tr>
<php endforeach; ?> -->
</tbody>
</table>
</div>