diff options
Diffstat (limited to 'src/web/templates/admin')
-rw-r--r-- | src/web/templates/admin/dashboard.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/web/templates/admin/dashboard.html b/src/web/templates/admin/dashboard.html index d6e53526..925d4cac 100644 --- a/src/web/templates/admin/dashboard.html +++ b/src/web/templates/admin/dashboard.html @@ -18,7 +18,7 @@ </thead> <tbody> {% for user in users %} - <tr {% if not user.enabled %}class="warning"{% endif %}> + <tr {% if not user.is_active %}class="warning"{% endif %}> <td>{{ loop.index }}</td> <td>{{ user.nickname }}{% if user.id == current_user.id %} (It's you!){% endif %}</td> <td><a href="mailto:{{ user.email }}">{{ user.email }}</a></td> @@ -28,7 +28,7 @@ <a href="{{ url_for("admin.user", user_id=user.id) }}"><i class="glyphicon glyphicon-edit" title="{{ _('Edit this user') }}"></i></a> {% if user.id != current_user.id %} <a href="{{ url_for("admin.toggle_user", user_id=user.id) }}"> - {% if user.enabled %} + {% if user.is_active %} <i class="glyphicon glyphicon-ban-circle" title="{{ _("Disable this account") }}"></i> {% else %} <i class="glyphicon glyphicon-ok-circle" title="{{ _("Enable this account") }}"></i> |