mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2025-07-20 01:32:31 +02:00
Beautify services table with hover and no borders Unify formatting of mumble/jabber/ts3 service URLs in table
27 lines
863 B
HTML
Executable File
27 lines
863 B
HTML
Executable File
{% extends "public/base.html" %}
|
|
{% load staticfiles %}
|
|
{% load i18n %}
|
|
|
|
{% block title %}Alliance Auth{% endblock %}
|
|
|
|
{% block page_title %}{% trans "Services Management" %}{% endblock page_title %}
|
|
{% block extra_css %}{% endblock extra_css %}
|
|
|
|
{% block content %}
|
|
<div class="col-lg-12">
|
|
<h1 class="page-header text-center">{% trans "Available Services" %}</h1>
|
|
<table class="table table-hover">
|
|
<tr>
|
|
<th class="text-center">{% trans "Service" %}</th>
|
|
<th class="text-center">{% trans "Username" %}</th>
|
|
<th class="text-center">{% trans "Domain" %}</th>
|
|
<th class="text-center">{% trans "Action" %}</th>
|
|
</tr>
|
|
{% for svc in service_ctrls %}
|
|
{{ svc }}
|
|
{% endfor %}
|
|
</table>
|
|
</div>
|
|
|
|
{% endblock content %}
|