Fix services

This commit is contained in:
ErikKalkoken 2020-02-15 20:10:38 +01:00
parent 9976ecc2aa
commit 1182b51e4b

View File

@ -8,17 +8,23 @@
{% block content %} {% block content %}
<div class="col-lg-12"> <div class="col-lg-12">
<h1 class="page-header text-center">{% trans "Available Services" %}</h1> <h1 class="page-header text-center">{% trans "Available Services" %}</h1>
<table class="table table-hover"> <div class="table-responsive">
<table class="table table-striped">
<thead>
<tr> <tr>
<th class="text-center">{% trans "Service" %}</th> <th class="text-center">{% trans "Service" %}</th>
<th class="text-center">{% trans "Username" %}</th> <th class="text-center">{% trans "Username" %}</th>
<th class="text-center">{% trans "Domain" %}</th> <th class="text-center">{% trans "Domain" %}</th>
<th class="text-center">{% trans "Action" %}</th> <th class="text-center">{% trans "Action" %}</th>
</tr> </tr>
</thead>
<tbody>
{% for svc in service_ctrls %} {% for svc in service_ctrls %}
{{ svc }} {{ svc }}
{% endfor %} {% endfor %}
</tbody>
</table> </table>
</div> </div>
</div>
{% endblock content %} {% endblock content %}