diff --git a/allianceauth/authentication/templates/authentication/dashboard.html b/allianceauth/authentication/templates/authentication/dashboard.html
index ebea7e05..99d43ee7 100644
--- a/allianceauth/authentication/templates/authentication/dashboard.html
+++ b/allianceauth/authentication/templates/authentication/dashboard.html
@@ -18,57 +18,64 @@
{% if request.user.profile.main_character %}
- {% with request.user.profile.main_character as main %}
-
-
-
-
-
- |
-
-
-
-
- {{ main.character_name }}
-
-
- {{ main.character_name }}
- {{ main.corporation_name }}
- {{ main.alliance_name }}
-
- |
-
-
-
-
-
-
-
-
- |
-
-
- {{ main.corporation_name }} |
-
-
-
-
- {% if main.alliance_id %}
-
-
-
-
- |
-
-
- {{ main.alliance_name }} |
-
-
- {% endif %}
-
- {% endwith %}
+ {% with request.user.profile.main_character as main %}
+
+
+
+
+
+
+ |
+
+
+ {{ main.character_name }} |
+
+
+
+
+
+
+
+
+ |
+
+
+ {{ main.corporation_name }} |
+
+
+
+
+ {% if main.alliance_id %}
+
+
+
+
+ |
+
+
+ {{ main.alliance_name }} |
+
+
+ {% endif %}
+
+
+
+
+
+
+
+
+
+ {{ main.character_name }}
+ {{ main.corporation_name }}
+ {{ main.alliance_name }}
+
+
+ {% endwith %}
{% else %}
-
{% trans "No main character set." %}
+
+ {% trans "No main character set." %}
+
{% endif %}
@@ -93,9 +100,9 @@
{% for group in user.groups.all %}
-
- {{ group.name }} |
-
+
+ {{ group.name }} |
+
{% endfor %}
@@ -123,13 +130,13 @@
{% for ownership in request.user.character_ownerships.all %}
{% with ownership.character as char %}
-
-
- |
- {{ char.character_name }} |
- {{ char.corporation_name }} |
- {{ char.alliance_name }} |
-
+
+
+ |
+ {{ char.character_name }} |
+ {{ char.corporation_name }} |
+ {{ char.alliance_name }} |
+
{% endwith %}
{% endfor %}
@@ -138,16 +145,16 @@
{% for ownership in request.user.character_ownerships.all %}
{% with ownership.character as char %}
-
-
-
- |
-
- {{ char.character_name }}
- {{ char.corporation_name }}
- {{ char.alliance_name|default:"" }}
- |
-
+
+
+
+ |
+
+ {{ char.character_name }}
+ {{ char.corporation_name }}
+ {{ char.alliance_name|default:"" }}
+ |
+
{% endwith %}
{% endfor %}
diff --git a/allianceauth/groupmanagement/templates/groupmanagement/audit.html b/allianceauth/groupmanagement/templates/groupmanagement/audit.html
index 7010ea47..f4acf2d0 100644
--- a/allianceauth/groupmanagement/templates/groupmanagement/audit.html
+++ b/allianceauth/groupmanagement/templates/groupmanagement/audit.html
@@ -27,37 +27,42 @@
{% trans "Actor" %} |
- {% for entry in entries %}
-
- {{ entry.date }} |
- {{ entry.requestor }} |
- {{ entry.req_char }} |
- {{ entry.group }} |
- {{ entry.type_to_str }} |
- {% if entry.request_type is None %}
- Removed |
- {% else %}
- {{ entry.action_to_str }} |
- {% endif %}
- {{ entry.request_actor }} |
-
- {% endfor %}
+ {% for entry in entries %}
+
+ {{ entry.date }} |
+ {{ entry.requestor }} |
+ {{ entry.req_char }} |
+ {{ entry.group }} |
+ {{ entry.type_to_str }} |
+ {% if entry.request_type is None %}
+ Removed |
+ {% else %}
+ {{ entry.action_to_str }} |
+ {% endif %}
+ {{ entry.request_actor }} |
+
+ {% endfor %}
{% else %}
-
{% trans "No entries found for this group." %}
+
+ {% trans "No entries found for this group." %}
+
{% endif %}
{% endblock %}
+
{% block extra_javascript %}
{% include 'bundles/datatables-js.html' %}
{% endblock %}
+
{% block extra_css %}
{% include 'bundles/datatables-css.html' %}
{% endblock %}
+
{% block extra_script %}
$(document).ready(function(){
$('#log-entries').DataTable();
diff --git a/allianceauth/groupmanagement/templates/groupmanagement/groupmembers.html b/allianceauth/groupmanagement/templates/groupmanagement/groupmembers.html
index 0874faf2..45f29f9b 100644
--- a/allianceauth/groupmanagement/templates/groupmanagement/groupmembers.html
+++ b/allianceauth/groupmanagement/templates/groupmanagement/groupmembers.html
@@ -4,7 +4,6 @@
{% load evelinks %}
{% block page_title %}{% trans "Group Members" %}{% endblock page_title %}
-{% block extra_css %}{% endblock extra_css %}
{% block content %}
{% if groups %}
-
-
- {% trans "Name" %} |
- {% trans "Description" %} |
- {% trans "Status" %} |
- {% trans "Member Count" %} |
- {% trans "Action" %} |
-
- {% for group in groups %}
-
- {{ group.name }} |
- {{ group.authgroup.description }} |
-
- {% if group.authgroup.hidden %}
- {% trans "Hidden" %}
- {% elif group.authgroup.open %}
- {% trans "Open" %}
- {% else %}
- {% trans "Requestable" %}
- {% endif %}
- |
-
- {{ group.num_members }}
- |
-
-
-
-
-
-
-
- |
-
- {% endfor %}
-
+
+
+
+
+ {% trans "Name" %} |
+ {% trans "Description" %} |
+ {% trans "Status" %} |
+ {% trans "Member Count" %} |
+ |
+
+
+
+ {% for group in groups %}
+
+ {{ group.name }} |
+ {{ group.authgroup.description }} |
+
+ {% if group.authgroup.hidden %}
+ {% trans "Hidden" %}
+ {% elif group.authgroup.open %}
+ {% trans "Open" %}
+ {% else %}
+ {% trans "Requestable" %}
+ {% endif %}
+ |
+
+ {{ group.num_members }}
+ |
+
+
+
+
+
+
+
+ |
+
+ {% endfor %}
+
+
+
{% else %}
-
{% trans "No groups to list." %}
+
+ {% trans "No groups to list." %}
+
{% endif %}
diff --git a/allianceauth/groupmanagement/templates/groupmanagement/groups.html b/allianceauth/groupmanagement/templates/groupmanagement/groups.html
index 008b11e4..37f654e1 100644
--- a/allianceauth/groupmanagement/templates/groupmanagement/groups.html
+++ b/allianceauth/groupmanagement/templates/groupmanagement/groups.html
@@ -9,49 +9,54 @@ url