Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
7 changes: 5 additions & 2 deletions metadata.html.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,10 @@
</tbody>
</table>
<p>* number of Sphinx build process warnings</p>
<p>For more information about translations, see the <a href="https://devguide.python.org/documentation/translating/">Python Developer’s Guide</a>.</p>
<p>Last updated at {{ generation_time.strftime('%A, %-d %B %Y, %-H:%M:%S %Z') }} (in {{ duration // 60 }}:{{ "{:02}".format(duration % 60) }} minutes).</p>
<footer>
<hr>
<p>You can find the scripts used to generate this page <a href="https://github.com/python-docs-translations/dashboard">here</a>.</p>
<p>Last updated at {{ generation_time.strftime('%A, %-d %B %Y, %-H:%M:%S %Z') }} (in {{ duration // 60 }}:{{ "{:02}".format(duration % 60) }} minutes).</p>
</footer>
</body>
</html>
3 changes: 3 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ th, td {
th {
background-color: #f4f4f4;
}
hr {
color: #f4f4f4;
}
.progress-bar {
display: inline-block;
color: white;
Expand Down
14 changes: 11 additions & 3 deletions template.html.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,17 @@ main | <a href="metadata.html" target="_self">meta</a>
</tbody>
</table>
<p>* the number in parentheses shows change in the last 30 days, included in the total completion</p>
<p>The Python documentation currently has a word count of {{ '{:,}'.format(word_count) }}.</p>
<p>For more information about translations, see the <a href="https://devguide.python.org/documentation/translating/">Python Developer’s Guide</a>.</p>
<p>Last updated at {{ generation_time.strftime('%A, %-d %B %Y, %-H:%M:%S %Z') }} (in {{ duration // 60 }}:{{ "{:02}".format(duration % 60) }} minutes).</p>
<h3>Python Documentation</h3>
<p>
Currently being translated into <strong>{{ completion_progress|length }}</strong> languages.
The documentation has a word count of {{ '{:,}'.format(word_count) }}.
For more information about translations, see the <a href="https://devguide.python.org/documentation/translating/">Python Developer’s Guide</a> and <a href="https://peps.python.org/pep-0545/">PEP 545</a>.
</p>
<footer>
<hr>
<p>You can download the data on this page in <code>.json</code> format <a href="https://github.com/python-docs-translations/dashboard/blob/gh-pages/index.json">here</a>, and you can also find the scripts used to generate this page <a href="https://github.com/python-docs-translations/dashboard">here</a>.
<p>Last updated at {{ generation_time.strftime('%A, %-d %B %Y, %-H:%M:%S %Z') }} (in {{ duration // 60 }}:{{ "{:02}".format(duration % 60) }} minutes).</p>
</footer>
</body>
<script>
function updateProgressBarVisibility() {
Expand Down
Loading