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">
<tr> <table class="table table-striped">
<th class="text-center">{% trans "Service" %}</th> <thead>
<th class="text-center">{% trans "Username" %}</th> <tr>
<th class="text-center">{% trans "Domain" %}</th> <th class="text-center">{% trans "Service" %}</th>
<th class="text-center">{% trans "Action" %}</th> <th class="text-center">{% trans "Username" %}</th>
</tr> <th class="text-center">{% trans "Domain" %}</th>
{% for svc in service_ctrls %} <th class="text-center">{% trans "Action" %}</th>
{{ svc }} </tr>
{% endfor %} </thead>
</table> <tbody>
{% for svc in service_ctrls %}
{{ svc }}
{% endfor %}
</tbody>
</table>
</div>
</div> </div>
{% endblock content %} {% endblock content %}