Fix columns size

This commit is contained in:
2023-10-01 10:22:03 +02:00
parent 5d536ce568
commit 75074d5e90
10 changed files with 36 additions and 32 deletions

View File

@@ -17,18 +17,18 @@
<tbody>
{% if d.logo %}
<tr>
<th class="w-25" scope="row">Logo</th>
<th class="w-33" scope="row">Logo</th>
<td><img style="max-height: 48px" src="{{ d.logo.url }}" /></td>
</tr>
{% endif %}
{% if d.website %}
<tr>
<th class="w-25" scope="row">Website</th>
<th class="w-33" scope="row">Website</th>
<td><a href="{{ d.website }}" target="_blank"><i class="bi bi-box-arrow-up-right"></i></a></td>
</tr>
{% endif %}
<tr>
<th class="w-25" scope="row">Category</th>
<th class="w-33" scope="row">Category</th>
<td>{{ d.category | title }}</td>
</tr>
</tbody>