Skip to content

Commit

Permalink
add list of tables
Browse files Browse the repository at this point in the history
  • Loading branch information
Lucie Milan committed Oct 6, 2023
1 parent 5ae2a97 commit a664ced
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions _includes/integrations/templates/schemas/schemas.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,17 @@
{% assign fk-filename = integration.name | append: "-" | append: version | append: "-foreign-keys" %}
{% assign fk-tables = site.data.taps.schemas.[integration.name].[version].[fk-filename].tables %}

<div>
<p>The following tables are available in this integration:</p>
<ul>
{% for table in tables %}
{% if table.status != "not found" %}
<li><a href="#{{ table.name | slugify }}">{{ table.name }}</a></li>
{% endif %}
{% endfor %}
</ul>
</div>

<div>
{% for table in tables %}

Expand Down

0 comments on commit a664ced

Please sign in to comment.