Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 8 additions & 6 deletions adbc_drivers_validation/templates/features.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,8 @@
</table>

{% if custom_features.groups %}
### Driver-Specific Features

<table class="docutils data align-default" style="width: 100%">
<colgroup>
<col span="1" style="width: 25%;">
Expand All @@ -112,18 +114,18 @@
</tr>
</thead>
<tbody>
{%- for group, features in custom_features.groups.items() %}
{%- for feature in features %}
{% for group, features in custom_features.groups.items() %}
{% for feature in features %}
<tr>
{%- if loop.first %}
{% if loop.first %}
<td rowspan="{{ features|length }}">{{ group }}</td>
{%- endif %}
{% endif %}
<td>{{ feature.name }}</td>
<td>{% if feature.supported %}✅{% else %}❌{% endif %}</td>
<td>{{ feature.description }}</td>
</tr>
{%- endfor %}
{%- endfor %}
{% endfor %}
{% endfor %}
</tbody>
</table>
{% endif %}
Loading