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 35fda7b commit c84a8d7Copy full SHA for c84a8d7
generate.py
@@ -51,7 +51,11 @@
51
<tbody>
52
{% for language, completion, branch in completion_progress | sort(attribute=1) | reverse %}
53
<tr>
54
- <td data-label="language">{{ language }}</td>
+ <td data-label="language">
55
+ <a href="https://github.com/python/python-docs-{{ language }}" target="_blank">
56
+ {{ language }}
57
+ </a>
58
+ </td>
59
<td data-label="branch">{{ branch }}</td>
60
<td data-label="completion">
61
<div class="progress-bar" style="width: {{ completion | round(2) }}%;">{{ completion | round(2) }}%</div>
0 commit comments