We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a0e5d79 commit 9239962Copy full SHA for 9239962
template.html.jinja
@@ -24,7 +24,11 @@ main | <a href="metadata.html" target="_self">meta</a>
24
{% for project in completion_progress | sort(attribute='completion,translators.number') | reverse %}
25
<tr>
26
<td data-label="language">
27
- <a href="{{ project.contribution_link }}">{{ project.language.name }} ({{ project.language.code }})</a>
+ {% if project.contribution_link %}
28
+ <a href="{{ project.contribution_link }}">{{ project.language.name }} ({{ project.language.code }})</a>
29
+ {% else %}
30
+ {{ project.language.name }} ({{ project.language.code }})
31
+ {% endif %}
32
</td>
33
<td data-label="build">
34
{% if project.in_switcher %}
0 commit comments