Skip to content

Commit

Permalink
Render native name on road to usable table
Browse files Browse the repository at this point in the history
  • Loading branch information
balloob committed Nov 13, 2024
1 parent ca3d97b commit 16719ff
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion website/src-11ty/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -111,8 +111,17 @@ <h2>Road to Team 💚</h2>
</tr>
</thead>
{% for language in intentSummary.improvements %}
{% assign summary = intentSummary.languages[language] %}
<tr>
<td>{{ language }}</td>
<td>
<a
href="https://github.com/home-assistant/intents/blob/main/sentences/{{ summary.language }}/"
target="_blank"
>
<code>{{summary.language}}</code> {{summary.native_name}}
</a>

</td>
<td>{{ intentSummary.languages[language].missing_intents | size }}</td>
<td style="text-align: left; padding-left: 16px;">
{% for intent in intentSummary.languages[language].missing_intents %}
Expand Down

0 comments on commit 16719ff

Please sign in to comment.