mirror of
https://github.com/outbackdingo/Mailu.git
synced 2026-01-27 10:19:35 +00:00
Merge #3200
3200: Fix highligting disabled users r=mergify[bot] a=nwinkelstraeter This just changes the class on the rows of disabled users from `warning` to `bg-warning` . As warning is not available in AdminLTE 3 disabled users where not highlighted anymore-  ## What type of PR? bug-fix ## What does this PR do? ### Related issue(s) #3166 Co-authored-by: Nico Winkelsträter <nico.winkelstraeter@initos.com>
This commit is contained in:
@@ -28,7 +28,7 @@
|
||||
</thead>
|
||||
<tbody>
|
||||
{%- for user in domain.users %}
|
||||
<tr{% if not user.enabled %} class="warning"{% endif %}>
|
||||
<tr{% if not user.enabled %} class="text-muted"{% endif %}>
|
||||
<td>
|
||||
<a href="{{ url_for('.user_edit', user_email=user.email) }}" title="{% trans %}Edit{% endtrans %}"><i class="fas fa-pencil-alt"></i></a>
|
||||
</td>
|
||||
|
||||
Reference in New Issue
Block a user