mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2026-02-10 00:56:19 +01:00
90 lines
4.1 KiB
HTML
90 lines
4.1 KiB
HTML
{% extends "allianceauth/base.html" %}
|
|
{% load static %}
|
|
{% load i18n %}
|
|
|
|
{% block page_title %}{% trans "Groups Membership" %}{% endblock page_title %}
|
|
{% block extra_css %}{% endblock extra_css %}
|
|
|
|
{% block content %}
|
|
<div class="col-lg-12">
|
|
<br>
|
|
{% include 'groupmanagement/menu.html' %}
|
|
|
|
<div class="panel panel-default">
|
|
<div class="panel-heading">
|
|
{% trans "Groups" %}
|
|
</div>
|
|
|
|
<div class="panel-body">
|
|
{% if groups %}
|
|
<div class="table-responsive">
|
|
<table class="table table-aa">
|
|
<thead>
|
|
<tr>
|
|
<th>{% trans "Name" %}</th>
|
|
<th>{% trans "Description" %}</th>
|
|
<th>{% trans "Status" %}</th>
|
|
<th style="white-space: nowrap;">{% trans "Member Count" %}</th>
|
|
<th style="min-width: 170px;"></th>
|
|
</tr>
|
|
</thead>
|
|
|
|
<tbody>
|
|
{% for group in groups %}
|
|
<tr>
|
|
<td>
|
|
<a href="{% url 'groupmanagement:membership' group.id %}">{{ group.name }}</a>
|
|
</td>
|
|
|
|
<td>{{ group.authgroup.description|linebreaks|urlize }}</td>
|
|
|
|
<td>
|
|
{% if group.authgroup.hidden %}
|
|
<span class="label label-info">{% trans "Hidden" %}</span>
|
|
{% elif group.authgroup.open %}
|
|
<span class="label label-success">{% trans "Open" %}</span>
|
|
{% else %}
|
|
<span class="label label-default">{% trans "Requestable" %}</span>
|
|
{% endif %}
|
|
</td>
|
|
|
|
<td class="text-right">
|
|
{{ group.num_members }}
|
|
</td>
|
|
|
|
<td class="text-right">
|
|
<a href="{% url 'groupmanagement:membership' group.id %}" class="btn btn-primary" title="{% trans "View Members" %}">
|
|
<i class="glyphicon glyphicon-eye-open"></i>
|
|
</a>
|
|
|
|
<a href="{% url "groupmanagement:audit_log" group.id %}" class="btn btn-info" title="{% trans "Audit Members" %}">
|
|
<i class="glyphicon glyphicon-list-alt"></i>
|
|
</a>
|
|
|
|
<a id="clipboard-copy" data-clipboard-text="{{ request.scheme }}://{{request.get_host}}{% url 'groupmanagement:request_add' group.id %}" class="btn btn-warning" title="{% trans "Copy Direct Join Link" %}">
|
|
<i class="glyphicon glyphicon-copy"></i>
|
|
</a>
|
|
</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
{% else %}
|
|
<div class="alert alert-warning text-center">
|
|
{% trans "No groups to list." %}
|
|
</div>
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock content %}
|
|
|
|
{% block extra_javascript %}
|
|
{% include 'bundles/clipboard-js.html' %}
|
|
|
|
<script>
|
|
new ClipboardJS('#clipboard-copy');
|
|
</script>
|
|
{% endblock %}
|