From a625d67152bf4fd3d6a996a2b0937c902201c6d7 Mon Sep 17 00:00:00 2001 From: Sunil Mohan Adapa Date: Sun, 14 Dec 2014 00:26:29 +0530 Subject: [PATCH] Show active status in user list, increase delete button size - Separate out styling details --- .../modules/users/templates/users_list.html | 35 ++++++++++++++----- 1 file changed, 26 insertions(+), 9 deletions(-) diff --git a/plinth/modules/users/templates/users_list.html b/plinth/modules/users/templates/users_list.html index e1ccde1b1..f4040c66e 100644 --- a/plinth/modules/users/templates/users_list.html +++ b/plinth/modules/users/templates/users_list.html @@ -20,25 +20,42 @@ {% load bootstrap %} -{% block content %} +{% block page_head %} + +{% endblock %} +{% block content %}
{% for user in object_list %} -
- + + + + + {{ user.username }} - - - + {% if not user.is_active %} + + {% endif %}
{% endfor %}