bissl aussehen verbessert

This commit is contained in:
Daniel 2019-04-11 21:02:22 +02:00
parent 346d3a94aa
commit 9bfe8360a3

View file

@ -7,7 +7,7 @@
<div class="title"> <div class="title">
<t1>Willkommen!</t1> <t1>Willkommen!</t1>
</div> </div>
<div class="tablebox"> <div class="container">
<table> <table>
<thead> <thead>
<tr> <tr>
@ -19,7 +19,11 @@
<tbody> <tbody>
{% for key in service %} {% for key in service %}
<tr> <tr>
<td>{{ service[key] }}</td> {% if service[key] %}
<td><i class="small material-icons">check</i></td>
{% else %}
<td><i class="small material-icons">error</i></td>
{% endif %}
<td>{{ key }}</td> <td>{{ key }}</td>
</tr> </tr>
{% endfor %} {% endfor %}