2016-12-04 14:04:44 -05:00

72 lines
2.2 KiB
HTML

{% extends "base.html" %}
{% comment %}
#
# This file is part of Plinth.
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
{% endcomment %}
{% load bootstrap %}
{% load i18n %}
{% block page_head %}
<style type="text/css">
.user-edit-label {
display: inline-block;
width: 75%;
}
.list-group-item .btn {
margin: -5px 0;
}
</style>
{% endblock %}
{% block content %}
<div class="row">
<div class="col-sm-6">
<div class="list-group">
{% for user in object_list %}
<div class="list-group-item clearfix">
{% if object_list|length != 1 %}
<a href="{% url 'users:delete' user.username %}"
class="btn btn-default btn-sm pull-right"
role="button"
title="{% blocktrans with username=user.username %}Delete user {{ username }}{% endblocktrans %}">
<span class="glyphicon glyphicon-trash"
aria-hidden="true"></span>
</a>
{% endif %}
<a class='user-edit-label'
href="{% url 'users:edit' user.username %}"
title="{% blocktrans with username=user.username %}Edit user {{ username }}{% endblocktrans %}">
{{ user.username }}
</a>
{% if not user.is_active %}
<span class="glyphicon glyphicon-ban-circle"
aria-hidden="true"></span>
{% endif %}
</div>
{% endfor %}
</div>
{% include "diagnostics_button.html" with module="users" %}
</div>
</div>
{% endblock %}