mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2025-07-19 01:02:30 +02:00
63 lines
2.7 KiB
HTML
63 lines
2.7 KiB
HTML
{% extends "public/base.html" %}
|
|
{% load staticfiles %}
|
|
{% load i18n %}
|
|
|
|
{% block title %}Alliance Auth{% endblock %}
|
|
|
|
{% block page_title %}{% trans "Available" %}{% endblock page_title %}
|
|
{% block extra_css %}{% endblock extra_css %}
|
|
|
|
{% block content %}
|
|
<div class="col-lg-12">
|
|
<h1 class="page-header text-center">{% trans "Available Groups" %}</h1>
|
|
{% if STATE == MEMBER_STATE or user.is_superuser %}
|
|
{% if groups %}
|
|
<table class="table">
|
|
<tr>
|
|
<th class="text-center">{% trans "Name" %}</th>
|
|
<th class="text-center">{% trans "Description" %}</th>
|
|
<th class="text-center">{% trans "Action" %}</th>
|
|
</tr>
|
|
|
|
{% for g in groups %}
|
|
<tr>
|
|
<td class="text-center">{{ g.group.name }}</td>
|
|
<td class="text-center">{{ g.group.authgroup.description }}</td>
|
|
<td class="text-center">
|
|
{% if g.group in user.groups.all %}
|
|
{% if not g.request %}
|
|
<a href="{% url 'auth_group_request_leave' g.group.id %}" class="btn btn-danger">
|
|
{% trans "Leave" %}
|
|
</a>
|
|
{% else %}
|
|
<button type="button" class="btn btn-primary" disabled>
|
|
{{ g.request.status }}
|
|
</button>
|
|
{% endif %}
|
|
{% elif not g.request %}
|
|
<a href="{% url 'auth_group_request_add' g.group.id %}" class="btn btn-success">
|
|
{% trans "Request" %}
|
|
</a>
|
|
{% else %}
|
|
<button type="button" class="btn btn-primary" disabled>
|
|
{{ g.request.status }}
|
|
</button>
|
|
{% endif %}
|
|
</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|
|
{% else %}
|
|
<div class="alert alert-warning text-center">No groups available.</div>
|
|
{% endif %}
|
|
{% else %}
|
|
{% if IS_CORP %}
|
|
<div class="alert alert-danger" role="alert">{% trans "You are not in the corporation." %}</div>
|
|
{% else %}
|
|
<div class="alert alert-danger" role="alert">{% trans "You are not in the alliance." %}</div>
|
|
{% endif %}
|
|
{% endif %}
|
|
</div>
|
|
|
|
{% endblock content %}
|