mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-02-04 08:13:38 +00:00
Most tables now occupy the full width of the container row. Some of them are otherwise squished. Also make sure the new fixed container layout has not reduced the originally intended width of a table.
70 lines
2.1 KiB
HTML
70 lines
2.1 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">
|
|
<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>
|
|
|
|
<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 %}
|