redesign table

This commit is contained in:
L3D 2023-03-13 00:08:45 +01:00
parent a2223f3111
commit a7abbf3dc7
Signed by: l3d
GPG key ID: CD08445BFF4313D1
2 changed files with 46 additions and 12 deletions

View file

@ -28,4 +28,7 @@ table {
} }
} }
} }
ul {
list-style-type: none;
}
} }

View file

@ -2,6 +2,11 @@
{% block title %}{{ this.title }}{% endblock %} {% block title %}{{ this.title }}{% endblock %}
{% block body %} {% block body %}
{{ this.body }} {{ this.body }}
{% if this.roles is defined %}
{% if this.roles.blocks | length != 0 %}
<a href="#roles">Ansible Roles</a>
{% endif %}
{% endif %}
{% if this.roles is defined %} {% if this.roles is defined %}
{% if this.roles.blocks | length != 0 %} {% if this.roles.blocks | length != 0 %}
<h2 id="roles">{{ this.tabletitle }}</h2> <h2 id="roles">{{ this.tabletitle }}</h2>
@ -9,9 +14,19 @@
<thead> <thead>
<tr> <tr>
<th>Role Name</th> <th>Role Name</th>
<td>Ansible Galaxy</td> <td>
<td>Maintainance Status</td> <ul>
<td>License</td> <li>Github</li>
<li>Gitea</li>
</ul>
</td>
<td>
<ul>
<li>Ansible Galaxy</li>
<li>Maintainance Status</li>
<li>License</li>
</ul>
</td>
</tr> </tr>
</thead> </thead>
<tbody> <tbody>
@ -19,17 +34,33 @@
<tr> <tr>
<th><a href="{{ blk.gitrepo }}" target="_blank">{{ blk.name }}</a></th> <th><a href="{{ blk.gitrepo }}" target="_blank">{{ blk.name }}</a></th>
<td> <td>
<code>
<ul>
<li>
<a href="{{ blk.gitrepo }}" target="_blank" titel="Github Link">{{ blk.gitrepo }}</a>
</li>
<li>
<a href="{{ blk.gitearepo }}" target="_blank">{{ blk.gitearepo }}</a>
</li>
</ul>
</code>
</td>
<td>
<ul>
<li>
{% if blk.no_galaxy %} {% if blk.no_galaxy %}
<a href="{{ blk.galaxy_url }}"> <a href="{{ blk.galaxy_url }}">
<img src="{{ {'name': blk.galaxy_name, 'state': blk.galaxy_name, 'label': 'ansible-galaxy'} | svg }}" /> <img src="{{ {'name': blk.galaxy_name, 'state': blk.galaxy_name, 'label': 'ansible-galaxy'} | svg }}" />
</a> </a>
{% else %}-{% endif %} {% else %}-{% endif %}
</td> </li>
<td> <li>
<img src="{{ {'name': blk.galaxy_name, 'state': blk.maintainance, 'label': 'maintainance'} | svg }}" /> <img src="{{ {'name': blk.galaxy_name, 'state': blk.maintainance, 'label': 'maintainance'} | svg }}" />
</td> </li>
<td> <li>
<img src="{{ {'name': blk.galaxy_name, 'state': blk.license, 'label': 'license'} | svg }}" /> <img src="{{ {'name': blk.galaxy_name, 'state': blk.license, 'label': 'license'} | svg }}" />
</li>
</ul>
</td> </td>
</tr> </tr>
{% endfor %} {% endfor %}